Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hey Pete,

    Sure thing 🙂 Just open a new support ticket and we’ll assist you further.

    Hey 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 🙂

    Hey 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.

    http://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 🙂

    Hey 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

Viewing 4 replies - 1 through 4 (of 4 total)