从 WooCommerce 电子邮件中删除货到付款说明

问题描述 投票:0回答:2

这是我的电子邮件目前的样子: enter image description here

我花了一些时间尝试删除这个:

'Pay wish cash upon arriving to destination.'

但是如果不删除其他东西就无法让它消失。

如果可以的话请帮忙。

谢谢你。

php wordpress woocommerce hook-woocommerce email-notifications
2个回答
3
投票

— 更新 1 —

在后端,如果您转到 WooCommerce > 设置 > 结帐 > 货到付款(选项卡),您将看到:

enter image description here

您将能够删除“到达目的地后支付愿望现金”。说明消息,或者用更方便的东西替换它。


您可以尝试使用 WordPress

gettext()
功能来删除您的文本:

add_filter( 'gettext', 'removing_email_text', 10, 3 );
function customizing_checkout_text( $translated_text, $untranslated_text, $domain )
{
    if ( 'Pay wish cash upon arriving to destination.' == $untranslated_text ) {
        $translated_text = __( '', $domain );
    }
    return $translated_text;
}

此代码位于活动子主题的 function.php 文件中(活动主题或任何插件文件)。

您也可以用其他内容替换文本。


0
投票

要更改或删除文本需要设置付款

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.