• Resolved ndy23

    (@ndy23)


    Hi,

    I changed Labels of some of the Billing fields (e.g. State -> Province), changed the order of the fields, and disabled “Apartment address” field in the back-end, but these changes do not show on the front end.
    However, when I make a change to Additional fields, those changes do show on the front end.

    We are using the Free version of the plugin. Local Overrides settings in the Advanced tab are all checked (and I tried unchecking and checking back again).

    Please advise, thank you.

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Dina S.

    (@themehighsupport)

    Your issue needs a detailed check. Can you please raise a ticket through our website? We hope our technical team will be able to help you.

    Thank you!

    Thread Starter ndy23

    (@ndy23)

    Okay, thank you .

    Plugin Support Dina S.

    (@themehighsupport)

    We hope your issue is resolved by adding the below code snippet in your child theme’s functions.php file.

    add_filter('thwcfd_billing_fields_priority', 'thw78e_change_billing_priority');
    
    function thw78e_change_billing_priority($priority){
        $priority = 999999;
        return $priority;
    
    }
    
    add_filter('thwcfd_shipping_fields_priority', 'thw678e_change_shipping_priority');
    
    function thw678e_change_shipping_priority($priority){
        $priority = 999999;
        return $priority;
    
    }

    Thank you!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Billing field changes don’t show on front end’ is closed to new replies.