我花了一些时间试图删除它:
'Pay wish cash upon arriving to destination.'
但是如果不删除其他东西就不能让它消失。
如果可以的话请帮忙。
谢谢你。
我花了一些时间试图删除它:
'Pay wish cash upon arriving to destination.'
但是如果不删除其他东西就不能让它消失。
如果可以的话请帮忙。
谢谢你。
— 更新 1 —</p>
在后端,如果您转到 WooCommerce > 设置 > 结帐 > 货到付款(选项卡),您将看到:
您将能够删除“到达目的地时支付wish cash”。说明消息,或者用更方便的东西替换它。
您可以尝试使用 WordPressgettext()
功能以这种方式删除您的文本:
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 文件中。
您也可以将文本替换为其他内容。