1 min read

How to reset custom order number

use custom order number + goto your phpmyadmin, at table wp_options , update the setting key = "_op_wc_custom_order_number" with setting value = 0.​after done , clean browser cache…

1 min read

Disable Default Cash Payment and Set default payment method

Use this shortcode to yourtheme/functions.php or any snippet plugin to do it if(!function_exists('custom_pos_disable_cash')) { function custom_pos_disable_cash($session_response_data){ $session_response_data['setting']['pos_disable_cash'] = 'yes'; $session_response_data['setting']['pos_default_payment'] = 'op_authorize_net_magnetic'; // change to your payment code…

1 min read

How to change kitchen url:

some case, your hosting restricted access direct from plugins folder. So, You can't access your kitchen view page. To resolve it, pls follow this guide to change kitchen…

1 min read

How to set password for kitchen view

add this shortcode to your theme / functions.php or in any Snippets plugin to do it . add_filter('op_kitchen_protected_password',function(){ return '123456'; // change to your password });

1 min read

How to add custom payment method in POS

To do this, add this snippets code to your theme/function.php or any code snippets plugin and custom the method code , method name as you want if(!function_exists('custom_payment_op_login_format_payment_data')) {…

1 min read

Default enable force receipt print

function custom_pos_allow_receipt($session_response_data){ $session_response_data['allow_receipt'] = 'yes'; return $session_response_data; } add_filter('op_get_login_cashdrawer_data','custom_pos_allow_receipt',11,1);

1 min read

Alway active gift option in checkout

if(!function_exists('custom_gift_login_cashdrawer_data')) { function custom_gift_login_cashdrawer_data($session_response_data){ $session_response_data['setting']['pos_default_gift'] = 'yes'; return $session_response_data; } } add_filter('op_get_login_cashdrawer_data','custom_gift_login_cashdrawer_data',20,1);

1 min read

Restaurant: How to change grid size of product / category in QRcode table login

Use this shortcode and customize on yourtheme/functions.php or any code snippets plugin function custom_op_get_guest_login_session_data($session_data){ $session_data['setting']['pos_product_grid_column'] = 1;//change by your self $session_data['setting']['pos_product_grid_row'] = 4; //change by your self $session_data['setting']['pos_cat_grid_column']…