第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

WooCommerce 管理員訂單頁(yè)面更改折扣標(biāo)簽

WooCommerce 管理員訂單頁(yè)面更改折扣標(biāo)簽

PHP
慕仙森 2023-04-28 15:19:51
在最近對(duì) WooCommerce 的更新中,他們將折扣一詞更改為優(yōu)惠券。這是在訂單總表中。請(qǐng)參閱此屏幕截圖以獲得 > 清晰度https://prnt.sc/sq6xfh我想盡可能將其改回折扣,因?yàn)楫?dāng)您實(shí)際應(yīng)用折扣時(shí)說(shuō)優(yōu)惠券真的沒(méi)有意義。理想情況下,如果需要,最好顯示折扣和優(yōu)惠券行,因?yàn)橛袝r(shí)您可能會(huì)應(yīng)用優(yōu)惠券和折扣?,F(xiàn)在,我正在嘗試更改上面屏幕截圖中指出的折扣標(biāo)簽。我在插件核心文件中找到了代碼并且知道我無(wú)法更改它,這是代碼:  </tr>    <?php if ( 0 < $order->get_total_discount() ) : ?>        <tr>            <td class="label"><?php esc_html_e( 'Coupon(s):', 'woocommerce' ); ?></td>            <td width="1%"></td>            <td class="total">-                <?php echo wc_price( $order->get_total_discount(), array( 'currency' => $order->get_currency() ) ); // WPCS: XSS ok. ?>            </td>        </tr>    <?php endif; ?>我不確定如何通過(guò)我的 functions.php 將上面代碼中的 Coupon(s) 更改為 Discounts任何幫助表示贊賞。干杯尼克
查看完整描述

1 回答

?
MMMHUHU

TA貢獻(xiàn)1834條經(jīng)驗(yàn) 獲得超8個(gè)贊

gettext您可以這樣使用 WordPress掛鉤:


add_filter('gettext', 'custom_strings_translation', 20, 3);

function custom_strings_translation( $translated_text, $text, $domain ) {

global $pagenow, $typenow;


    // Settings

    $current_text = "Coupon(s):";

    $new_text     = "Discount(s):";


    // Targeting admin single order pages

    if( is_admin() && in_array($pagenow, ['post.php', 'post-new.php']) && 'shop_order' === $typenow && $current_text === $text ){

        $translated_text =  __( $new_text, $domain );

    }

    return $translated_text;

}

代碼進(jìn)入活動(dòng)子主題(或活動(dòng)主題)的 functions.php 文件。測(cè)試和工作。


查看完整回答
反對(duì) 回復(fù) 2023-04-28
  • 1 回答
  • 0 關(guān)注
  • 203 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)