How to disable online order notice ?

Add this short to to your_active_theme/functions.php or any snippet code plugin support

Make Shorter POS URL

As default , our POS panel url has this format : http://your_domain.com/wp-content/plugins/woocommerce-openpos/posIf you

Can you give me a code to leave in client fields j...

function op_custom_customer_field_google_address_data($session_response_data){ $name_field = array( 'code' => 'name', 'type' => 'text', 'label'

How to display custom product data on Receipt temp...

#1. add custom product data to POS product data #2. add data

How to use woocommerce online payment method in PO...

#1. online website and POS have different logic about payment .​- in

How to create x-report for register

#1. admin/pos/ receipt template​#2. create new template with type = “x-report”, set

How to add new product type display on POS.

Default , openpos just display those product type : ‘simple’,’variation’ as physical

Change distance in addon “OpenPos Secure –...

add_filter('op_max_distance_kilometer',function(){ return 0.4; // in KM });

Disallow Register Waiter mode remove ordered item ...

add this code to yourtheme/functions.php or any snippest code + update the

Enable Rounding at Cart Grand Total

function custom_pos_round_grand_total_data($session_response_data){ $session_response_data['setting']['pos_round_grand_total'] = 'yes'; return $session_response_data; } add_filter('op_get_login_cashdrawer_data','custom_pos_round_grand_total_data',11,1);