• I am wanting to add text after the datepicker calendar and before the book now button on my product pages.

    https://expansecottages.com/product/spoolmak/

    I know I can use custom templates, but I am using LayersWP framework which seems to override using custom woocommerce templates. I had added additional text on my checkout page using a custom function to add that text using :after


    function yews_text_after_place_order_button() {
    echo'<div class=”after-place-order-button”><p><h5>We require a $150 Damage Deposit upon check in which MUST be in the form of Cash or Credit Card (No Debit available).
    Please refer to our Policies Page for more information on Damage Deposits</h5></p></div>’;
    }
    add_action(‘woocommerce_checkout_before_terms_and_conditions’,’yews_text_after_place_order_button’);
    —-

    Is there an equivalent code I could use to sneak some text in after teh datepicker calendar?

  • The topic ‘Woocommerce Bookings – datepicker’ is closed to new replies.