WooCommerce 中的结帐支付挂钩

Checkout payment hook in WooCommerce

我想在结帐页面的付款方式部分上方添加标记 <h3>payment</h3>

我尝试插入文件 woocommerce/checkout/payment.phpwoocommerce/checkout/payment-method.phpwoocommerce/checkout/checkout.php

无论我在哪里插入标记,它都会复制。

我应该在哪里添加标记?

这是那个区域的挂钩。将其放入您的 functions.php 文件中:

function woocommerce_before_payment_area( ) { 
    echo '<h3>payment</h3>';
};
add_action( 'woocommerce_review_order_before_payment', 'woocommerce_before_payment_area', 50, 0 );

如果它还在加倍,那么钩子可能已经在你的主题中了。在您的代码库中搜索 woocommerce_review_order_before_payment 并在那里进行更改。