Delete price filter & make widget fit to 5 widget
-
Before I see someone have problem same with me, you tell him to add this to child theme
add_filter( ‘basel_use_custom_price_widget’, ‘__return_false’, 10 );
But price filter still showing. How to remove it then?
How to make widget shop fit to 5 widget?
I change style.css and sytle.min.css from .filters-inner-area>div:nth-child(4n+1) to .filters-inner-area>div:nth-child(5n+1) but didn’t change why? But, when I manually edit element it’s works. Can you tell me why?
Hi,
Try to replace the code with this one
add_filter( 'woodmart_use_custom_price_widget', '__return_false', 10 );
And add the following CSS code to the Custom CSS
.filter-widget {
width:20%!important;
}
div.filters-inner-area > div:nth-child(4n+1) {
clear: none;
}
div.filters-inner-area > div:nth-child(5n+1) {
clear: both;
}
Regards
Thanks!
I want to ask again. How to make this not full like this http://prntscr.com/hg6muw when I use site width: content full width I just want image and add to cart area not full.
Hi,
You can try our “Wide” layout instead of content full width.
Regards
Sorry not clear about what I want. I mean, I want site width with content full width except product page. For product page I want look like when I set full width on site width option. Like demo image I sent before.
But this option works globally for all pages on the site. You can’t set different width on the single product page only.
How about custom css? I stuck about this
Could you please provide us your website access so we can take a look what can be done there?
Try this code
.single-product-page .container {
max-width: 1300px!important;
}
The topic ‘Delete price filter & make widget fit to 5 widget’ is closed to new replies.