Why no product dipslay on POS ?
In our pos, all product exist on "default online store" by default. So, if you create a custom outlet, no product display on your outlet. Let image you…
In our pos, all product exist on "default online store" by default. So, if you create a custom outlet, no product display on your outlet. Let image you…
#1. Choose customer you want in admin/user and take note this user email#2. open your_active_theme/functions.php , add this code to your end of this file; function custom_default_order_customer($order_data){ $customer…
when you use user name + password to login, but you want use PIN for logon / logoff . you can use this snippet code to yourtheme/function.php or…
To sort product list on POS panel, you can add this shortcode to yourtheme/function.php or a snippet code plugin to sort products on POS product list from new…
add_filter('op_online_order_paid_status',function($status){ $status = array('completed','processing'); return $status; },10,1)
use this snippet code to yourtheme/function.php or snippet code plugin add_filter('op_get_login_cashdrawer_data',function($session_response_data){ $session_response_data['setting']['openpos_send_kitchen_confirm']= 'no'; return $session_response_data; },102,1); https://youtu.be/X5wrd5Sg4x8
in some case cause the hosting memory , hosting got trouble about memory when add new order , so , order will duplicate item . to resolve it…
add this shortcode to yourthem/functions.php or any snippet code plugin add_filter('op_api_result',function($result,$api_action){ if($api_action == 'get_app_list') { global $op_session_data; $is_waiter = isset($op_session_data['login_cashdrawer_mode']) && ($op_session_data['login_cashdrawer_mode'] == 'waiter'|| $op_session_data['login_cashdrawer_mode'] == 'customer') ?…
I got some use case, they want add more field to order via POS. Since version 3.3.2, we support add more order field API. So, it look like this…
Put this snippet code to yourtheme/functions.php or snippet code plugin to do it add_filter('op_get_login_cashdrawer_data',function($session_response_data){ $session_response_data['sale_persons'] = array(); return $session_response_data; },112,1);
Recent Comments