Looking for help?
< All Topics
Print

Require save online order

In some system, they don’t want save offline order, they want alway contact to hosting and save online order. this snippet code can help do that

add_filter('op_get_login_cashdrawer_data',function($session_response_data){
    $session_response_data['setting']['pos_online_order_submit'] =  'yes';
    return $session_response_data;
},11,1);
Table of Contents