Hi,
1) The zoom option on product page is not functioning just by enabling it in admin.I have added some custom css (got it from other post).But now the product image is overlaying the sticky header(see screenshot attached)
.zoomContainer {
z-index: 99;}
2)Could you suggest some snippet to hide category WITH its products on shop page.I recently used snippet below, but it hides just a category name, products are still displayed.
//Exclude Category from woocommerce
add_filter( 'woocommerce_product_categories_widget_args', 'woo_product_cat_widget_args' );
function woo_product_cat_widget_args( $cat_args ) {
$cat_args['exclude'] = array('16');
return $cat_args;
}
Thank you!
Yas