Frequently Asked Questions
How to make changeable price of product on POS ?
since version 2.2.4, we support feature changeable price of product on POS, it mean cashier can change price of product when add it to cart. You can see how it work follow image below
click item on cart, you see price , click on price
change price and click Save.
To active this feature on our plugin, pls copy this code to end of file yourtheme/function.php
This no need sine version 3.9. it implement as default plugin function https://prnt.sc/qnwfx8
click item on cart, you see price , click on price
change price and click Save.
To active this feature on our plugin, pls copy this code to end of file yourtheme/function.php
if(!function_exists('pricechangeable_op_product_data')) { function pricechangeable_op_product_data($product_data,$product){ $product_data['allow_change_price'] = true; return $product_data; } } add_filter('op_product_data','pricechangeable_op_product_data',10,2);after done, goto pos , logout and login again and see effect.
This no need sine version 3.9. it implement as default plugin function https://prnt.sc/qnwfx8
Last updated Wed, Sep 19 2018 6:50pm