Code-Snippets-Functions/Execute a function on a child site/Ajax Search for WooCommerce/remove-sku-word-in-search.txt

4 lines
124 B
Text

add_filter( 'dgwt/wcas/phrase', function( $phrase ) {
$phrase = str_ireplace( 'sku:', '', $phrase );
return $phrase;
} );