Welcome to our Support Portal › Forums › WooCommerce Personalized Product Options Manager (PPOM) › Is there a way to make checkbox and radio groups be multiple columns › Reply To: Is there a way to make checkbox and radio groups be multiple columns
March 25, 2018 at 3:40 am
#8575
Keymaster
Hi,
you can change radio class to inline so all options will be shown in line not per row. To change class please add following line into your theme’s functions.php file at bottom:
add_filter('ppom_radio_wrapper_class', 'ppom_inline_radio');
function ppom_inline_radio( $class ) {
$class = 'form-check-inline';
return $class;
}