How to enable decimal qty
Just goto admin/product/ edit product you want enable this feature/ at tab "openpos" choose allow decimal qty option
Just goto admin/product/ edit product you want enable this feature/ at tab "openpos" choose allow decimal qty option
add this code to yourtheme/functions.php or a snippet code add_filter('op_product_data',function($product_data,$product){ $product_data['decimal_qty'] = 'yes'; return $product_data; },102,2);
add this shortcode and modify it to yourtheme/functions.php or snippets code plugin add_filter('op_cashdrawer_login_session_data',function($session_data){ $session_data['setting']['custom_fees'] = array( array('title' => 'sample fee 5 percentage', 'amount' => 5, 'type'=> 'percent'), array('title'…
s you know , since version 3.1.0 , we already support separate dish to Cook area and Bar area.It mean when a dish add to table order, it…
add this shortcode to yourtheme/functions.php or use snippets code plugin add_filter('op_get_login_cashdrawer_data',function($session_response_data){ $active_emails = array(); // add this allow for some staff email only // $active_emails[] = 'abc@gmail.com'; $logged_user_email…
admin/pos/setting/ Default Dashboard Display => choose Tiles Dashboard this is some quick link
goto admin/product/edit product to set it How to add Kitchen order area on Restaurant ? As you know , since version 3.1.0 , we already support separate dish…
add this snippet code to yourtheme/functions.php or snippets code plugin add_filter('op_get_login_cashdrawer_data',function($session_response_data){ $session_response_data['setting']['openpos_auto_logoff']=array('screen_time' => 5,'popup_wait_time' => 10); // warning appear when have no action on screen in 5 minutes,…
to do this requirement , you can add this snippet code to your theme/ functions.php or a snippets code plugin add_filter('woocommerce_product_is_on_sale',function($on_sale, $current){ global $op_session_data; if($op_session_data) { return false;…
enable email editable function custom_op_basic_customer_field($session_response_data){ $openpos_customer_basic_fields = $session_response_data['setting']['openpos_customer_fields']; foreach($openpos_customer_basic_fields as $key => $field) { if($field['code'] == 'email') { $openpos_customer_basic_fields[$key]['editable'] = 'true'; } } $session_response_data['setting']['openpos_customer_fields'] = $openpos_customer_basic_fields; return $session_response_data;…
Recent Comments