Hi @brightlin,
Sure, please share the product page URL, we will suggest you the CSS.
please use this filter inside theme’s functions.php
add_filter('ppom_checkbox_wrapper_class', function($class){ return 'form-check';});
-
This reply was modified 5 years, 11 months ago by
N-Media. Reason: syntax error fixed
Thanks!
I’ve tried putting this at various location inside the funcitons.php file of my themes and it’s not working.
Should it go into a specific location within the file?
I went to the Appearance -> Theme editor -> selected the default theme -> selected Theme Functions. I’ve put it outside of any functions and even within functions and no changes.
Yes, it should be in the location you mentioned.
I’ve tried and it hasn’t changed anything. It’s still show vertically.
By the way, I see only one checkbox on your given URL.
That is correct, I’m using only one. Currently the checkbox is above the label. I would like to have side by side
Ok, you will get a CSS soon.
Hey,
Here is CSS for display the checkbox with label inline.
CSS:
.ppom-wrapper .ppom-check-input{
display: inline-block !important;
}
Thanks.