تغییر متن کدتخفیف دارید؟ در صفحه پرداخت
برای تغییر متن قطعه کد زیر را در فایل functions قالب قرار دهید
add_filter( 'woocommerce_checkout_coupon_message', 'themefars_have_coupon_message'); function themefars_have_coupon_message() { return '<i class="fa fa-ticket" aria-hidden="true"></i> کد تخفیف دارید؟ <a href="#" class="showcoupon">برای نوشتن کد اینجا کلیک کنید</a>'; } برای حذف این بخش از صفحه پرداخت ووکامرس قطعه کد زیر را در فایل فانکشن قالب قرار دهید
// hide coupon field on the checkout page
function themefars_coupon_field_on_checkout( $enabled ) {
if ( is_checkout() ) {
$enabled = false;
}
return $enabled;
}
add_filter( ‘woocommerce_coupons_enabled’, ‘themefars_coupon_field_on_checkout’ );
دیدگاهتان را بنویسید