更改WooCommerce签出按钮-恢复为正常

时间:2015-10-25 作者:mikkeljuhl

我正在尝试更改“邮政编码”字段的签出标签和占位符。

但是,使用此代码:

函数custom\\u wc\\u checkout\\u字段($字段){

$fields[\'billing\'][\'billing_postcode\'][\'placeholder\'] = \'Postnummer\';
$fields[\'billing\'][\'billing_postcode\'][\'label\'] = \'Postnummer\';
返回$字段;}

只需返回通常的输出,即“Postnummer/ZIP”

如果我将其设置为false:
$字段[\'billing\'][\'billing\\u postcode\'][\'label\']=false;然后它就不出现了。但是,如果我将占位符设置为false,它仍然会显示出来。

我能做什么?

1 个回复
SO网友:Monkey Puzzle

您需要正确地挂接函数,所以在编写代码之前(在functions.php中)尝试以下操作:

// Hook in
add_filter( \'woocommerce_checkout_fields\' , \'custom_wc_checkout_fields\' );

相关推荐