Disable zoom on category
-
I am trying to disable the zoom on any product pages within a certain category. I found the thread further down but cannot get the code to work:
add_action('wp_enqueue_scripts','remove_zoom_on_some_categories', 100); function remove_zoom_on_some_categories(){ if ( !function_exists('is_product') ) return; if ( is_product() && has_term(array('sustainability'), 'product_cat')) { wp_dequeue_script('image_zoom-frontend'); } }
any suggestions?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Disable zoom on category’ is closed to new replies.