Hello.
I installed new plugin for additional checkout fields in the woocommerce shop. The Problem is after the title of this additonal checkoutfields, there is no carriage return inserted. I contacted the plugin vendor and they suggested different solutions by modifying the css code. They mentioned it might depend on the theme whether this CSS is going to work or not.
I know that you are not responsible for 3rd plugins. But it would be really helpful if you could have a look into that. Maybe its just a small thing which needs correction?
This are the plugin vendors suggestions which did not help to resolve the problem.
display: block;
or
#conditional_checkout_field_pro_1 h3:after {
content: “\A”;
}
Where “\A” indicates a line escape. You may also need to add white-space: pre; or white-space: pre-wrap;
Thanks for your help,
Philip
Hi Philip!
This is what I see in your checkout page.
How do I get those fields to display?
Cheers!
Elliott
Hi!
Try adding this to your custom CSS.
.woocommerce-shipping-fields > div > * {
display: block !important;
float: none !important;
}
Regards,
Elliott