答案 0 :(得分:1)
无需修改模板即可使用过滤器更改文本。复制并粘贴到主题的functions.php文件中。这是一个更清洁的解决方案,因为模板文件将来可能需要更新。
function my_text_strings( $translated_text, $text, $domain ) {
switch ( $translated_text ) {
case 'Create an account?' :
$translated_text = __( 'This is the new text that will be displayed!', 'woocommerce' );
break;
}
return $translated_text;
}
add_filter( 'gettext', 'my_text_strings', 20, 3 );
答案 1 :(得分:-1)
虽然没有可以修改此文本的钩子,但还有另一种选择。将woocommerce / template / form-billing.php模板复制并覆盖到您的主题中,然后在其中修改文本。
要遵循的步骤