Product Categories Masonry & Remove sort in shop
-
Hello,
I love your theme!
I just have a couple questions:
1) In the xtemos Product Categories element, the images zoom in as i scroll over them. How do i disable the zoom effect?
2) How do I style the labels in the xtemos Product Categories element? I would like them to look like the xtemos Button bordered style.
3) I used this snipet to disable the ‘sort by’ widget in the shop, but it just moved it to be outside the filter menu (see screenshot). Is there a way to completely remove the ‘sort by’ dropdown while keeping the theme’s filter options?
add_filter( ‘basel_use_custom_order_widget’, ‘__return_false’, 10 );
Thank you! 🙂
Alison
Attachments:
You must be
logged in to view attached files.
Hello,
Thank you for using our theme.
Here is a custom CSS code snippet that you can add to the Custom CSS area in Theme Settings to fix all issues
.cat-design-default:hover>.category-content>a {
transform:none;
-webkit-transform:none;
-o-transform:none;
-moz-transform:none;
}
.cat-design-default .hover-mask {
background: transparent;
box-shadow: none;
border: 1px solid rgba(255, 255, 255, 0.5);
}
.cat-design-default .hover-mask h3 {
color: white;
}
.shop-loop-head .woocommerce-ordering {
display:none;
}
Regards