答案 0 :(得分:3)
- 更新1 -
在后端,如果你去WooCommerce>设置>结帐>货到付款(选项卡),您将看到:
您将能够删除“抵达目的地后支付现金”。说明消息,或用更方便的东西替换它。
您可以尝试使用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文件中。
您也可以用其他内容替换文字。