1 min read

How to change bill screen 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

Show stock details on each outlet

enter this shortcode to your product description page to show current product stock details [op_product_warehouses] if you want show details of product by id . you can use…

1 min read

Bulk print barcode label follow product qty

add this shortcode to your theme/ functions.php or code snippets plugin function custom_op_product_label_qty($qty,$product){ return $product->get_stock_quantity(); } add_filter( 'op_product_label_qty', 'custom_op_product_label_qty' ,10,2);

1 min read

Enable send email to admin when create order from pos

Add this shorcode to yourtheme/functions.php or use any code snippets plugin to do add_filter('op_allow_send_woo_email',function(){ return true; }); add_filter('op_receipt_use_woo_email',function(){ return true; }); function custom_op_add_order_after($order,$order_data){ WC()->mailer()->emails['WC_Email_New_Order']->trigger( $order->get_id(), $order, true );…

1 min read

Deactive create customer by default

Deault, create customer selection is active. Some time, you don't want this, to deactive this selection add this code to your-theme/functions.php or any snippet code plugin. After done,…

1 min read

Display Subtotal include tax instead excl tax

Some country want show total incl tax on subtotal at cart area. to do this, add this shortcode to yourtheme/functions.php or any snippets code plugin. function custom_pos_cart_subtotal_incl_tax($session_response_data){ $session_response_data['setting']['pos_cart_subtotal_incl_tax']…

2 min read

POS external APP explain

To help developer can extend function for pos. we already provide function to help make a function run under POS. this function we call "external app" . A…