OpenPOS Self-Checkout ([op_self_checkout] shortcode)
The self-checkout shortcode turns any page into a storefront where a customer browses products, builds a cart, and pays — inline, without ever leaving the page. It is…
The self-checkout shortcode turns any page into a storefront where a customer browses products, builds a cart, and pays — inline, without ever leaving the page. It is…
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…
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);
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){…
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,…
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}}'…
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…
since version 8.0, restful turn on by default. If you use some addon require ajax , you can swap pos back to ajax by add this snippet code…
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';…
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']…
Recent Comments