Frequently Asked Questions
How to change default email domain @open-pos.com
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 @open-pos.com . to change this default , shop owner can change it by add and custom this code to your-theme/functions.php
function custom_customer_demo_domain($demo_email){ return '@your-custom-domain.com'; } add_filter('op_customer_demo_domain','custom_customer_demo_domain',10,1);
Last updated Wed, Sep 19 2018 6:50pm