个性化阅读
专注于IT技术分析

如何更改”具有促销代码?”

如何更改”具有促销代码”? 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>

`

谢谢


#1


看一下本文并按照说明进行操作。或者只是将以下代码粘贴到主题函数文件中:

function woocommerce_rename_coupon_field_on_cart( $translated_text, $text, $text_domain ) {
    // bail if not modifying frontend woocommerce text
    if ( is_admin() || 'woocommerce' !== $text_domain ) {
        return $translated_text;
    }
    if ( 'Apply Coupon' === $text ) {
        $translated_text = 'Put your text here';
    }
    return $translated_text;
}
add_filter( 'gettext', 'woocommerce_rename_coupon_field_on_cart', 10, 3 );

然后更改”在此处输入文字”。

赞(0)
未经允许不得转载:srcmini » 如何更改”具有促销代码?”

评论 抢沙发

评论前必须登录!