Skip to main content
Login Join
Snippet · PHP

Disable Swatches on Specific Archive Pages

Shared by Mehraz Morshed · September 9, 2026 · @disable_woo_variation_swatches_archive_product

2 views
1 upvote
Back to Snippets

Prevent swatches from appearing on certain category pages.

add_filter( 'disable_woo_variation_swatches_archive_product', function( $default, $product ) {
    $target_category_ids = [ 18, 19, 20 ]; // Replace with your category IDs

    if ( has_term( $target_category_ids, 'product_cat', $product->get_id() ) ) {
        return true; // Disable swatches
    }

    return $default;
}, 10, 2 );
Know a different way to do this? Add your approach as a variation so folks can compare them side by side.
Submit a variation

0 comments