• Resolved dmagryta

    (@dmagryta)


    Greetings,

    after update my layout of checkout fields got broken for some reason, there are 2 boxes for zipcode i guess, no real clue why that happens. When it comes to plugin settings everything looks fine to me, nothing changed since half a year or so.

    Screenshot – https://ibb.co/NF37Jv6

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter dmagryta

    (@dmagryta)

    i just found out that theres some custom class on description of title of that box and its “screen-reader-text” any idea how to get rid of that ? or why was it added in the first place ?

    Plugin Support Tomasz WP Desk

    (@tomaszwp)

    Hello @dmagryta

    Please paste this into functions.php. Make a backup of this file just in case.

    add_filter( 'woocommerce_checkout_fields' , 'custom_override_checkout_fields' );
    function custom_override_checkout_fields( $fields ) {
         $fields['billing']['billing_address_2'] = array(
        'label_class'  => '',
         );
         return $fields;
    }
    Thread Starter dmagryta

    (@dmagryta)

    it worked, thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Double zip-code field (?)’ is closed to new replies.