1 min read

How to set category display on POS panel

to set category display on POS: 1. goto admin/pos/setting/pos layout , choose category 2. setting follow this screenshot 3. click save setting 4. logout and login pos again…

1 min read

disable guest count dialog when open table

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

1 min read

Show variation attribute with select style

If you want show variation attribute with select style follow image below. you can add this snippet code to yourtheme/functions.php or add on your snippet code plugin add_filter('op_product_variant',function($variation){…

1 min read

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,…

1 min read

How to custom format offline order number

If you want custom order number, instead default generate, this guide can help you . Or use 100% offline order number add_filter('op_get_login_cashdrawer_data',function($session_response_data){ /* For example: {{register_id}}-{{store_id}}-{{order_index}} explain: '{{year}}'…

1 min read

Show more customers search result

default, customer search result is 5. to change it, use this snippet code in your theme/functions.php or in snippet code plugin add_filter('op_search_customer_result_per_page',function(){ return 10 ; // change to…

1 min read

how to set default shipping information

use this snippet code to add default shipping address on your pos add_filter('op_new_order_data',function($order_data){ $add_shipping = isset($order_data['add_shipping']) ? $order_data['add_shipping'] : false; if(!$add_shipping) { $order_data['add_shipping'] = true; $order_data['shipping_method'] = 'store_pickup';…

1 min read

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']…