• Resolved coldrealms65

    (@coldrealms65)


    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)
  • Plugin Author Diana Burduja

    (@diana_burduja)

    Would you try the following:

    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_zoooom' );
            wp_dequeue_script( 'image_zoooom-init' );
        }
    }
    Thread Starter coldrealms65

    (@coldrealms65)

    Perfect. Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Disable zoom on category’ is closed to new replies.