Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save hamidrezayazdani/4ff997c545fdbd1452916423bc44b6bd to your computer and use it in GitHub Desktop.
Save hamidrezayazdani/4ff997c545fdbd1452916423bc44b6bd to your computer and use it in GitHub Desktop.
<?php
function wpp_woodmart_ajax_search_compatibility( $args ) {
if ( function_exists( 'fix_arabic' ) ) {
$args['s'] = fix_arabic( $args['s'] );
}
return $args;
}
add_filter( 'woodmart_ajax_search_args', 'wpp_woodmart_ajax_search_compatibility' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment