1 min read

Short URL snippet code

// pos url add_filter('op_pos_url',function(){ $url = site_url( '/pos/', 'https' ); return $url; }); // bill url add_filter('op_bill_url',function(){ $url = site_url( '/bill/', 'https' ); return $url; }); //kitchen url…

1 min read

display all saved cart instead current date

To display all saved cart instead current date. add this shortcode to yourtheme/functions.php or use snippets code to add new snippet add_filter('op_draft_orders_query_args',function($args){ unset($args['date_query']); return $args; },10,1);

1 min read

Add custom product barcode meta key

add this shortcode to yourtheme/functions.php or snippets code with change your meta key function custom_op_barcode_key_setting($fields){ $fields['_barcode'] = "WooCommerce Barcode"; // change _barcode to your meta key return $fields;…

1 min read

How to change grid size in POS ?

By default , the setting grid in admin/pos/setting effect for desktop screen. To change other screen , you can use this shortcode and customize as you want to…

1 min read

How to change digital scale barcode prefix

Default , the scale barcode prefix of openpos is "20". To change this, add this shortcode to yourtheme/functions.php or any snippets plugin function op_custom_pos_weight_barcode_prefix($session_response_data){ $session_response_data['setting']['pos_weight_barcode_prefix'] = '99';// change…