Hi @jchambo,
Yes, that’s possible. There is “By another field” option in each custom field’s “Visibility Options” settings. You need to set it to another field’s ID. For example, if you want that custom field to be shown only if the billing phone is not empty, you should set our option to billing_phone
.
Please give it a try and let me know if you have any questions/comments.
Is there any way to align items horizontally, not vertically? For example, if you create a new Radio Button, it puts the options in a vertical format, not horizontal.
Thanks!
Hi @jchambo,
You should be able to achieve that with CSS. Please try adding this to “Customize > Additional CSS”:
.woocommerce-checkout label.radio {
display: inline;
}
P.S. You may also want to add a margin after the labels, i.e.:
.woocommerce-checkout label.radio {
display: inline;
margin-right: 10px;
}
I’m going to mark this thread as “resolved” for now, hope that’s ok. Please let me know if there are still any questions/issues.