Remove the product short description from the index in Advanced Woo Search

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 '';
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.