First Name – Last Name Switch
-
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.
Hi dobsaserv,
Thanks for reaching to us.
Please provide URL of the mentioned page, so I can take a closer look.
Regards,
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,
Hi dobsaserv,
If you want to apply for all devices, so you can put code into Global CSS section.
Regards,
I understand this, but on mobile, it places the two fields side by side, which is problematic on a smaller screen.
Hi dobsaserv,
On the mobile, fields are placed one by one, so you want to place Last name above?
Regards,