George Michael
Forum Replies Created
-
Forum: Plugins
In reply to: [Appointments] Pagination on appointmentsHey Pete,
Sure thing ?? Just open a new support ticket and we’ll assist you further.
Forum: Plugins
In reply to: [Appointments] Pagination on appointmentsHey Pete,
Many thanks for your reply and I’m really glad we were able to help ??
Please don’t hesitate to let us know if we can be of any further assistance!
Have a great weekend ??
Forum: Plugins
In reply to: [Appointments] Pagination on appointmentsHey Pete,
Many thanks for your reply, working with Jack on this ??
I see that div.appointments-pagination .next element has “position:absolute;” defined in its CSS.
However, absolute positioning works relatively to the position of the parent element only if that element has “position”relative;”. So you will have to add “div.appointments-pagination { position:relative;}” in your CSS.
https://www.w3schools.com/cssref/pr_class_position.asp
So here is the CSS code that you’ll have to use :
.appointments-pagination { position : relative; margin-bottom : 150px }
And this one as well, in order to fix the width of that element :
.next { position : relative; width : 100%; }
Please let me know if that works for you ??
Forum: Plugins
In reply to: [Appointments] Formatting Client EmailsHey there @clbd15,
I hope you’re well today! ??
Appointments uses wp_mail function and HTML is disabled as default.
To enable HTML in emails, add these codes inside functions.php:
function app_modify_headers( $headers ) { return str_replace( 'text/plain', 'text/html', $headers ); } add_filter( 'app_message_headers', 'app_modify_headers' );
This information is also available through plugin’s FAQ.
Please don’t hesitate to let us know if there’s anything we can help with on that. ??
Cheers,
George