Cart item – Display line total excl tax instead incl tax by default
Default cart line item show Total with tax. if you dislike it and want show Total exclude tax instead. you can use snippets code plugin or edit yourtheme/functions.php…
Default cart line item show Total with tax. if you dislike it and want show Total exclude tax instead. you can use snippets code plugin or edit yourtheme/functions.php…
// 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…
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);
Default, openpos use "completed" order status to get report in admin/pos/report. if you want use your custom order status . you add this snippets code to "yourtheme/functions.php" or…
currenlty, openpos allow browse online save cart in same day. Some use case , you want browse all time, not care the date, to do this, you can…
use this snippet code to yourtheme/function.php or put to snippets code plugin add_filter('op_order_use_store_shipping_address',function(){ return false; })
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;…
With openpos, cause wordpress user have email is require. So, with those customer add via openpos but have no email, openpos auto generate a email with email domain…
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…
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…
Recent Comments