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…
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…
After install openpos. some times, you get his message : 403 - Forbidden with screen like this image below when access POS panel : IT cause the plugin…
add_filter('op_receipt_use_woo_email',function(){ return true; });
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…
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);
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 );…
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,…
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']…
Integrate with plugin "Print Barcode Labels for your WooCommerce products/orders" follow this way: #1. add this short code to your theme / functions.php or any snippet code plugin…
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…
Recent Comments