How to reset custom order number
use custom order number + goto your phpmyadmin, at table wp_options , update the setting key = "_op_wc_custom_order_number" with setting value = 0.after done , clean browser cache…
use custom order number + goto your phpmyadmin, at table wp_options , update the setting key = "_op_wc_custom_order_number" with setting value = 0.after done , clean browser cache…
Use this shortcode to yourtheme/functions.php or any snippet plugin to do it if(!function_exists('custom_pos_disable_cash')) { function custom_pos_disable_cash($session_response_data){ $session_response_data['setting']['pos_disable_cash'] = 'yes'; $session_response_data['setting']['pos_default_payment'] = 'op_authorize_net_magnetic'; // change to your payment code…
some case, your hosting restricted access direct from plugins folder. So, You can't access your kitchen view page. To resolve it, pls follow this guide to change kitchen…
When open and login to POS, openPOS will download product data to your offline data and use incase your internet broken. Some times, it still exist those product…
add this shortcode to your theme / functions.php or in any Snippets plugin to do it . add_filter('op_kitchen_protected_password',function(){ return '123456'; // change to your password });
To do this, add this snippets code to your theme/function.php or any code snippets plugin and custom the method code , method name as you want if(!function_exists('custom_payment_op_login_format_payment_data')) {…
function custom_pos_allow_receipt($session_response_data){ $session_response_data['allow_receipt'] = 'yes'; return $session_response_data; } add_filter('op_get_login_cashdrawer_data','custom_pos_allow_receipt',11,1);
if(!function_exists('custom_gift_login_cashdrawer_data')) { function custom_gift_login_cashdrawer_data($session_response_data){ $session_response_data['setting']['pos_default_gift'] = 'yes'; return $session_response_data; } } add_filter('op_get_login_cashdrawer_data','custom_gift_login_cashdrawer_data',20,1);
Use this shortcode and customize on yourtheme/functions.php or any code snippets plugin function custom_op_get_guest_login_session_data($session_data){ $session_data['setting']['pos_product_grid_column'] = 1;//change by your self $session_data['setting']['pos_product_grid_row'] = 4; //change by your self $session_data['setting']['pos_cat_grid_column']…
If you want use qrcode image in receipt with a custom url like as way to check order status ... you can use this shortcode in receipt template…
Recent Comments