Created
October 8, 2021 18:25
-
-
Save hamidrezayazdani/4ff997c545fdbd1452916423bc44b6bd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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