Home Forums WoodMart support forum First Name – Last Name Switch

First Name – Last Name Switch

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #597618

    dobsaserv
    Participant

    I am creating and using a Hungarian language website, and I would like to switch the order of the first name and last name at checkout, for both billing and shipping information, so that the last name appears first, followed by the first name.

    Thank you for your help.

    #597670

    Hung Pham
    Keymaster

    Hi dobsaserv,

    Thanks for reaching to us.

    Please provide URL of the mentioned page, so I can take a closer look.

    Regards,

    #597717

    dobsaserv
    Participant

    OK:

    #597840

    Hung Pham
    Keymaster

    Hi dobsaserv,

    Please add the below Custom CSS code to Theme Settings > Custom CSS > Custom CSS for Desktop:

    @media (min-width: 1025px) {
    	html[lang="hu"] p.form-row-first#billing_first_name_field,
    	html[lang="hu"] p.form-row-first#shipping_first_name_field{
    		float: right;
    	}
    
    	html[lang="hu"] p.form-row-last#billing_last_name_field,
    	html[lang="hu"] p.form-row-last#shipping_last_name_field{
    		float: left;
    	}	
    }

    Regards,

    #597877

    dobsaserv
    Participant

    thanks! and mobile?

    #598138

    Hung Pham
    Keymaster

    Hi dobsaserv,

    If you want to apply for all devices, so you can put code into Global CSS section.

    Regards,

    #598153

    dobsaserv
    Participant

    I understand this, but on mobile, it places the two fields side by side, which is problematic on a smaller screen.

Viewing 7 posts - 1 through 7 (of 7 total)