从 WooCommerce 电子邮件中删除货到付款说明
Remove Cash On Delivery Instructions From WooCommerce Emails
这是我的电子邮件目前的样子:
我花了一些时间试图删除这个:
'Pay wish cash upon arriving to destination.'
但是如果不移除其他东西就无法让它消失。
如果可以请帮忙
谢谢。
— 更新 1 —
在后端,如果您转到 WooCommerce > 设置 > 结帐 > 货到付款(选项卡),您将看到:
You will be able to remove "Pay wish cash upon arriving to destination." instructions message, or to replace it with something more convenient.
您可以尝试使用 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 文件中。
您也可以用其他内容替换文本。
这是我的电子邮件目前的样子:
我花了一些时间试图删除这个:
'Pay wish cash upon arriving to destination.'
但是如果不移除其他东西就无法让它消失。
如果可以请帮忙
谢谢。
— 更新 1 —
在后端,如果您转到 WooCommerce > 设置 > 结帐 > 货到付款(选项卡),您将看到:
You will be able to remove "Pay wish cash upon arriving to destination." instructions message, or to replace it with something more convenient.
您可以尝试使用 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 文件中。
您也可以用其他内容替换文本。