Add custom field in add custom product form

Snippet code to show field on pos panel Code to handle data

How to extend support for a product on CodeCanyon?

In order to renew or extend support for a product, you have

Manage cart button on POS

Auto 3 first button display , other inside the more icon.

Why Change calculation is wrong ?

When POS use payment mode =”single payment” or “single payment with multi

Use offline order number

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

Add variable attribute info to variation products

add_filter('op_product_data',function($product_data){ if(!empty($product_data)) { $_product = wc_get_product($product_data['id']); if($_product->get_type() == 'variation') { $product_data['display_search'] =

Cart item – Display line total excl tax inst...

Default cart line item show Total with tax. if you dislike it

Short URL snippet code

// pos url add_filter('op_pos_url',function(){ $url = site_url( '/pos/', 'https' ); return $url;

display all saved cart instead current date

To display all saved cart instead current date. add this shortcode to

How to add custom order status in pos sale report

Default, openpos use “completed” order status to get report in admin/pos/report. if