如何更改woocommerce優惠券中的「有促銷代碼?」標籤?如何更改「有促銷代碼?」
我試過包括一些我在互聯網上找到的php代碼,但它沒有工作。
請幫助我;我也改變了「有一個促銷代碼?」到「請在下面輸入您的會員代碼來申請折扣」在form-coupon.php文件中。
代碼如下:
if (! defined('ABSPATH')) {
exit; // Exit if accessed directly
}
if (! wc_coupons_enabled()) {
return;
}
if (empty(WC()->cart->applied_coupons)) {
$info_message = apply_filters('woocommerce_checkout_coupon_message', __('Please enter your membership code in the coupon to apply discount', 'woocommerce') . ' <a href="#" class="showcoupon">' . __('Please enter your membership code below to apply discount', 'woocommerce') . '</a>');
wc_print_notice($info_message, 'notice');
}
?>
<form class="checkout_coupon" method="post" style="display:none">
<p class="form-row form-row-first">
<input type="text" name="coupon_code" class="input-text" placeholder="<?php esc_attr_e('Member Code', 'woocommerce'); ?>" id="coupon_code" value="" />
</p>
<p class="form-row form-row-last">
<input type="submit" class="button" name="apply_coupon" value="<?php esc_attr_e('Apply code', 'woocommerce'); ?>" />
</p>
<div class="clear"></div>
</form>
`
感謝
你試過什麼代碼? – helgatheviking
請更新您的問題與您使用的代碼不工作......謝謝 – LoicTheAztec