Enable product qty decimal for ALL product

add this code to yourtheme/functions.php or a snippet code

Add a quick custom fee

add this shortcode and modify it to yourtheme/functions.php or snippets code plugin

How to add Kitchen order area on Restaurant ?

s you know , since version 3.1.0 , we already support separate

Disallow some staff do refund

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

Custom Tile link

admin/pos/setting/ Default Dashboard Display => choose Tiles Dashboard this is some quick

Set product kitchen area

goto admin/product/edit product to set it How to add Kitchen order area

Auto logoff when have no action on screen

add this snippet code to yourtheme/functions.php or snippets code plugin

I don’t want POS use sale price, sale price ...

to do this requirement , you can add this snippet code to

How to modify customer user name auto generate whi...

add_filter('op_customer_username',function($username,$customer_data){ if(isset($customer_data['phone'])) { $username = strtolower($customer_data['phone']); } return $username; },110,2);