订单详细信息下的WooCommerce添加按钮

时间:2020-06-04 作者:swatch360

我想在字体末尾添加一个按钮。

请帮忙。enter image description here

1 个回复
SO网友:Baikare Sandeep

您可以将以下代码写入活动主题的functions.php 要实现这一点:

// define the woocommerce_before_checkout_billing_form callback 
function action_woocommerce_before_checkout_billing_form( $wccs_custom_checkout_field_pro ) { 
    // Write your button code or any html here.... 
}; 

// add the action 
add_action( \'woocommerce_before_checkout_billing_form\', \'action_woocommerce_before_checkout_billing_form\', 10, 1 ); 

相关推荐