我正在尝试设置表单输入字段的样式以使其看起来更好。有谁知道如何轻松完成这项工作?
我已经好好看看在php文件中,但没有运气在哪里改变它。
谢谢!
答案 0 :(得分:2)
您可以使用woocommerce_form_field_<type>
过滤器来控制Woocommerce输入元素的输出。
//replace <type> with the type of input you need to update
function filter_woocommerce_form_field_<type>( $field, $key, $args, $value ) {
//edit or override the field here...
return $field;
};
add_filter('woocommerce_form_field_<type>', 'filter_woocommerce_form_field_type', 10, 4);