<?php
// Add to your (child) theme's functions.php
add_filter( 'facetwp_index_row', function( $params, $class ) {
if ( 'product_variation' == $params['facet_value'] ) {
return false; // don't index
}
return $params;
}, 12 );
Code snippets for FacetWP
<?php
// Add to your (child) theme's functions.php
add_filter( 'facetwp_index_row', function( $params, $class ) {
if ( 'product_variation' == $params['facet_value'] ) {
return false; // don't index
}
return $params;
}, 12 );