Woo commerce在结帐页面上更改了标题

时间:2015-11-19 19:01:34

标签: wordpress woocommerce

任何人都可以指引我找到我可以在哪里更改"州/县"和"邮政编码"在woocommerce结帐页面中的标题?

1 个答案:

答案 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;
}

链接页面上的其他示例和字段。