How to set password for kitchen view

add this shortcode to your theme / functions.php or in any Snippets

How to add custom payment method in POS

To do this, add this snippets code to your theme/function.php or any

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);

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);

Restaurant: How to change grid size of product / c...

Use this shortcode and customize on yourtheme/functions.php or any code snippets plugin

Receipt temple QRcode shortcode with custom url

If you want use qrcode image in receipt with a custom url

How to enable takeaway by default

Currently, takeaway should active when checkout by manual switch on. If you

How to ignore desk partial checkout

function custom_pos_pos_desk_multi_pay($session_response_data){ $session_response_data['setting']['pos_desk_multi_pay'] = 'no'; return $session_response_data; } add_filter('op_get_login_cashdrawer_data','custom_pos_pos_desk_multi_pay',50,1);

How to separate customer name to First name and La...

add this code to yourtheme/functions.php or use any snippets code plugin like