答案 0 :(得分:0)
您可以编辑文件模板/cart/cart-shipping.php 搜索文本“输入您的地址以查看运送选项。”
答案 1 :(得分:0)
使用过滤器而不是修改模板文件可能是一个更好的解决方法。将此块添加到活动主题文件夹中的function.php文件的最后:
add_filter('gettext', 'Behrooz_woo_translations', 20, 3);
add_filter('ngettext', 'Behrooz_woo_translations', 20, 3);
function Behrooz_woo_translations( $translation, $text, $domain ) {
// Put your custom text here in a key => value pair
$custom_text = array(
'Enter your address to view shipping options.' => 'This is the text that you want to replace with the original Text.',
);
if( array_key_exists( $translation, $custom_text ) ) {
$translation = $custom_text[$translation];
}
return $translation;
}