I can “Hide” the attribute label using this code:
add_filter( 'woocommerce_attribute_label', 'remove_attribute_label');
function remove_attribute_label() {
return "";
}
It works fine, however, formatting keeps my variations choices slightly to the right instead of aligning left. (see Image:
Standard and Extended License radio buttons not aligned left
The Standard and Extended License radio buttons are not aligned left, and my goal is to have them aligned left.
Thanks for any help.
New contributor
Tim is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.