Skip to content

Instantly share code, notes, and snippets.

@kreamweb
Created May 29, 2017 12:54
Show Gist options
  • Select an option

  • Save kreamweb/defab639f9c01f14a4ab507a6cc4f22b to your computer and use it in GitHub Desktop.

Select an option

Save kreamweb/defab639f9c01f14a4ab507a6cc4f22b to your computer and use it in GitHub Desktop.
Example to how change the search string
<?php
add_filter('yith_wcas_search_with_like', '__return_true');
add_filter( 'yith_wcas_search_string_manipulation', 'my_yith_wcas_search_string_manipulation' );
function my_yith_wcas_search_string_manipulation( $string ) {
$string = str_replace( '$', '%', trim( $string ) );
$string = str_replace( '.', '%', trim( $string ) );
return $string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment