This topic has 9 replies, 4 voices, and was last updated 10 years, 3 months ago by Anonymous.
Viewing 10 posts - 1 through 10 (of 10 total)
When “Make Appointment” is clicked the page reloads but it does not scroll to the message box at the top to let the user know that his/her appointment is scheduled. The user has to scroll up the page himself to see the message. Failing that the user will just sit looking at the screen wondering if anything happened. On reload can the page scroll automatically so that the confirmation message is visible to the user?
Replace this code in your template_appointment.php file around line no. 63.
success: function( response ){
jQuery('#formstatus').html(response);
jQuery('html, body').animate({
scrollTop: jQuery("#formstatus").offset().top
}, 800);
if( jQuery( '#apt_msg' ).hasClass( "success" ) ){
document.appointmentform.reset();
jQuery('.appointmenttimings').hide();
jQuery('.doctorlist').hide();
}
var window_width = jQuery(window).width();
if( window_width < 759 ){
$('body,html').animate({ scrollTop: 300 }, 800);
}
}
Topic is set to be resolved because of no reply. If you wish to update this topic please reply here instead of creating another topic.
Hi Team,
When I do test runs of the booking page, the admin email is not being sent. It used to be sending I believe before the 3.2.0 update but now they only seem to be going to the client/patient….not to the admin email.
Secondly, and less important but still a thought, the email to the patient seems to generate a link back to my blog, is there a way to disable this or to just have a better looking url? (ie without a tail like this: %40gmail.com&key=2ae82e434573cec05c8ab23a06de0165)
Thanks!
@detoxbuddy:
1. Fixed your issue.
Edited File:
lifecare/appointment/appointment_functions.php
2.If you want to disable the confirmation link for the user, you can comment this line in appointment_functions.php file on line#534
/**
* Sends mail to user mail
*/
wp_mail( $client_email,$confirm_email_subject, $confirm_email_msg,$headers );
Great thank you so much once again!
Topic is set to be resolved. If you wish to update this topic please reply here instead of creating another topic.
” Replace this code in your template_appointment.php file around line no. 63.”
Please Pam reddy, can you help me to do this?
@tidianeball:
If you can provide us WP Logins to your website with URL then I can fix the issue. Make sure you set the post as private reply so that only admin can see your wp-logins.
Viewing 10 posts - 1 through 10 (of 10 total)
You must be logged in to reply to this topic.