Remove the product short description from the index in Advanced Woo Search.
Snippet Type
Execute on Child Sites
Snippet
add_filter('aws_indexed_excerpt', 'my_aws_indexed_excerpt', 10, 3 );
function my_aws_indexed_excerpt( $excerpt, $id, $product ) {
return '';
}