任何人都可以指引我找到我可以在哪里更改"州/县"和"邮政编码"在woocommerce结帐页面中的标题?
答案 0 :(得分:2)
WooCommerce为此提供了钩子: 请查看Customizing checkout fields using actions and filters
正如您在该页面上看到的那样,您可以将一个函数(例如,您将在您的孩子的functions.php中保存)挂钩到WooCommerce结帐页面并更改可用的数据。
所以你的代码看起来像:
/ Hook in
add_filter( 'woocommerce_checkout_fields' , 'custom_override_checkout_fields' );
// Our hooked in function - $fields is passed via the filter!
function custom_override_checkout_fields( $fields ) {
$fields['shipping']['shipping_postcode']['label'] = 'My new postcode title';
$fields['shipping']['shipping_state']['label'] = 'My new state title';
return $fields;
}
链接页面上的其他示例和字段。