Looking for help?
< All Topics
Print

Disable Like search in openpos

In new version, we implement LIKE search, it mean you can search by “hodie” instead “hoodie” when search hoodie skirt. Some of you don’t want it , so, just disable it by add this snippet code to yourtheme/functions.php or add in your snippet code.

 add_filter('op_get_login_cashdrawer_data',function($session_response_data){
    
    $session_response_data['setting']['allow_fuse_search'] = 'no'; 
    return $session_response_data;
}, 100, 1);

Table of Contents