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 );