How to custom format offline order number

If you want custom order number, instead default generate, this guide can

Show more customers search result

default, customer search result is 5. to change it, use this snippet

Turnoff restful , use ajax instead

since version 8.0, restful turn on by default. If you use some

how to set default shipping information

use this snippet code to add default shipping address on your pos

Require save online order

In some system, they don’t want save offline order, they want alway

Why no product dipslay on POS ?

In our pos, all product exist on “default online store” by default.

How to set a default customer on OpenPOS

#1. Choose customer you want in admin/user and take note this user

How to active logoff / logon with PIN instead user...

when you use user name + password to login, but you want

How to sort products by created date

To sort product list on POS panel, you can add this shortcode

Markup online order status has been paid

add_filter('op_online_order_paid_status',function($status){ $status = array('completed','processing'); return $status; },10,1)