add this shortcode to your theme / functions.php or in any Snippets
To do this, add this snippets code to your theme/function.php or any
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
If you want use qrcode image in receipt with a custom url
Currently, takeaway should active when checkout by manual switch on. If you
function custom_pos_pos_desk_multi_pay($session_response_data){ $session_response_data['setting']['pos_desk_multi_pay'] = 'no'; return $session_response_data; } add_filter('op_get_login_cashdrawer_data','custom_pos_pos_desk_multi_pay',50,1);
add this code to yourtheme/functions.php or use any snippets code plugin like
Add this shortcode to yourtheme/functions.php
Recent Comments