【发布时间】:2021-02-12 17:43:27
【问题描述】:
【问题讨论】:
标签: php css woocommerce woocommerce-theming woocommerce-checkout-fields
【问题讨论】:
标签: php css woocommerce woocommerce-theming woocommerce-checkout-fields
哪一个?标签的实际text 或其color?
对于标签的实际文本,请使用以下filter 钩子!例如如果你想更改billing section中的first name label:
add_filter('woocommerce_checkout_fields', 'your_custom_checkout_fields', 20);
function your_custom_checkout_fields($fields){
$fields['billing']['billing_first_name']['label'] = 'testing label 101!';
# example of other fields
# $fields['billing']['billing_last_name']['label'] = 'some label!';
# $fields['billing']['billing_country']['label'] = 'some other label!';
# $fields['billing']['billing_phone']['label'] = 'other label';
# $fields['billing']['billing_email']['label'] = 'your label';
}
如果你想改变它的颜色,那么使用下面的css规则:
.woocommerce #billing_first_name_field label {
color: pink; /* you could replace pink with any color you want!!! */
}
【讨论】: