在Woocommerce结帐页面上取消链接优惠券表格

时间:2018-03-14 08:30:27

标签: php wordpress woocommerce checkout coupon

如果我不希望用户点击链接以应用优惠券代码,我需要编辑哪个文件?

简单来说,我希望不要点击LINK。

我希望优惠券出现在文字下面"有优惠券?"这样用户总能看到该部分。

1 个答案:

答案 0 :(得分:1)

<强>更新

使用专用的woocommerce_checkout_coupon_message过滤器挂钩可以非常轻松地完成此操作:

add_filter( 'woocommerce_checkout_coupon_message', 'custom_checkout_coupon_message', 20, 1 );
function custom_checkout_coupon_message( $message ) {
    ?>
        <script type='text/javascript'>
            jQuery(document).ready( function($){
                setTimeout(function(){
                    $('form.checkout_coupon').css('display','block');
                }, 300);
            });
        </script>
    <?php
    // HERE your custom message
    return __( 'Have a coupon?', 'woocommerce' ) . ' <a class="showcoupon-off">' . __( 'Below you can enter your coupon code', 'woocommerce' ) . '</a>';
}

代码进入活动子主题(或活动主题)的function.php文件。经过测试并正常工作。

enter image description here