Alway ask qty when add a product to cart

function custom_pos_alway_product_option_popup($session_response_data){ $session_response_data['setting']['pos_alway_product_option_popup'] = 'yes'; return $session_response_data; } add_filter('op_get_login_cashdrawer_data','custom_pos_alway_product_option_popup',11,1);

set default tax class when add custom item on pos

function custom_pos_custom_item_tax($session_response_data){ $session_response_data['setting']['pos_custom_item_tax'] = 'standard'; // change to default tax class you

Default active takeaway button on checkout

function custom_pos_checkout_takeaway_default($session_response_data){ $session_response_data['setting']['pos_checkout_takeaway_default'] = 'yes'; return $session_response_data; } add_filter('op_get_login_cashdrawer_data','custom_pos_checkout_takeaway_default',11,1);

Alway keep offline order when logout

function custom_pos_clear_desk_after_checkout($session_response_data){ $session_response_data['setting']['pos_default_clear_sale_data'] = 'no'; return $session_response_data; } add_filter('op_get_login_cashdrawer_data','custom_pos_clear_desk_after_checkout',11,1);

How to create own receipt template

– admin/pos/receipt template. create a template with type = “receipt” , save–

Disallow view order from other Register Orders

If you want disallow your staff can view other register orders. you

Alway ask qty when add product to cart

function custom_pos_alway_product_option_popup($session_data){ $session_data['setting']['pos_alway_product_option_popup'] = 'yes'; return $session_data; } //add_filter('op_get_guest_login_session_data','custom_pos_alway_product_option_popup',20,1); // for guest

How to set fixed price of shipping method on pos

add this code to yourtheme/functions.php or any snippest code + update the

How to reset custom order number

use custom order number + goto your phpmyadmin, at table wp_options ,

Disable Default Cash Payment and Set default payme...

Use this shortcode to yourtheme/functions.php or any snippet plugin to do it