is there a way of adding form control to the input fields on woocommerce in wordpress?

I’m trying to style the form input fields to make it look nicer. Anyone know how this is easily done?

I’ve looked round to see in the php files but no luck on where to change this.

Read More

Thanks!

Related posts

1 comment

  1. You can use the woocommerce_form_field_<type> filter to control the output of Woocommerce input elements.

    //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);
    

    Reference: http://hookr.io/filters/woocommerce_form_field_type/

Comments are closed.