wisebro
Forum Replies Created
-
The custom development you offered us will completely solve the problem. We would like to take you up on this. It will meet the needs of my clients business. Thanks so much for this awesome plugin.
It’s ok. I figured it out.
We’ve decided to take a deposit of 50% for every booking. What I was trying to ask is if it were possible to give the option to someone who is booking, when they are checking out to have two options. Pay up front OR pay 50%. As currently you can only set it to one or the other. Not a problem though as we have a policy where if the customer cancels under 24hr they loose the deposit. Just an idea though.
- This reply was modified 5 years, 8 months ago by wisebro.
Hi thanks very much for fixing this problem. You even re wrote the plugin to fix it. I hope this helps future users of the plugin. Great support. Thank you!
- This reply was modified 5 years, 8 months ago by wisebro.
Hi,
I’ve sent you the details via email. The URL is https://www.nail-factory.co.uk thank you for your help
This problem only occurs when I enable assistant selection, which i need. Also in the console a string of dates are printed like this:
2019-06-03
2019-06-07
2019-06-08
2019-06-14
2019-06-15
2019-06-21
2019-06-22
2019-06-28
2019-06-29but when it works I only get one date in the console like this:
2019-06-03I have tried disabling all other plugins and a different theme but the problem still occurs. It’s seems to work 3 or 4 times, then go wrong 3 or 4 times.
Please could you help fix this.
Thanks
- This reply was modified 5 years, 10 months ago by wisebro.
Got it working. Re installed plugin and re-added assistants fixed it? Great plugin. Thank you
Hi the problem with the direct booking link was solved when i upgraded to the latest vertsion
Hi since creating the custom post type and taxonomy the direct booking link no longer works
Great plugin by the way and thanks for your help, I’ll be sure to buy the pro version. Just to clarify is it possible to have two options when you finalise the order? So when you pay for the service you have two options: “pay now” and “pay in full” -so clients can choose either to pay in full or pay a deposit when they finalise the order. At the moment it seems you can only set to take a deposit OR pay in full for the payment.
Thank you
in the end this code worked for me. Hope it helps anyone
function custom_post_type() { register_post_type( 'sln_service', array( 'labels' => array( 'name' => __( 'Nail Services' ), 'singular_name' => __( 'Nail Service' ) ), 'public' => true, 'has_archive' => true, 'rewrite' => array('slug' => 'sln_service'), 'taxonomies' => array( 'sln_service_category' ), ) ); } add_action( 'init', 'custom_post_type' ); //Register new taxonomy DEAL TYPE MC function custom_pages_tax() { // create a new taxonomy register_taxonomy( 'sln_service_category', 'sln_service', array( 'label' => __( 'Nail Categories' ), 'rewrite' => array( 'slug' => 'sln_service_category' ), 'capabilities' => array( 'assign_terms' => 'edit_posts', 'edit_terms' => 'publish_posts' ), 'labels' => array( ) ) ); } add_action( 'init', 'custom_pages_tax' );
Hi thanks for your help! This worked. For anyone else here’s the code: (add to funcitons.php) create single-sln_service.php if you wish.
function custom_post_type() { register_post_type('sln_service', array( 'labels' => array( 'name' => __('nail services'), 'singular_name' => __('nail service'), ), 'public' => true, 'has_archive' => true, ) ); } add_action('init', 'custom_post_type'); add_action( 'init', 'custom_pages_tax' ); function custom_pages_tax() { register_taxonomy( 'sln_service_category', 'sln_service', array( 'label' => __( 'Nail Category' ), 'rewrite' => array( 'slug' => 'sln_service_category' ), 'hierarchical' => true, ) ); }