我正在使用Wordpress 4.8.1并使用网桥主题 关于覆盖Woocommerce结帐字段占位符,我遇到了一些问题 使用专用的Woocommerce过滤器挂钩在我的结帐页面上不做任何更改:
function override_checkout_fields($fields) {
$fields['billing']['billing_first_name'] = array(
'label' => '',
'placeholder' => _x('First Name*', 'placeholder', 'woocommerce'),
'required' => true,
'class' => array('checkout-billing-first-name')
);
$fields['billing']['billing_last_name'] = array(
'label' => '',
'placeholder' => _x('last Name*', 'placeholder', 'woocommerce'),
'required' => true,
'class' => array('checkout-billing-last-name')
);
return $fields;
}
add_filter('woocommerce_billing_fields', 'override_checkout_fields');
我也使用了过滤器woocommerce_checkout_fields
,但没有更改占位符,因此我尝试使用woocommerce_billing_fields
,但也没有更改。