Okay
  Public Ticket #2739575
booking appointment page
Closed

Comments

  •  8
    besachi3 started the conversation

    I can't seem to find the code to modify the booking page title.

    Also I want to know, for the customer panel: 

    https://f481c9e85d.nxcli.net/customer-portal/

    how can I change the default date range so the customer can see more than a week at a time show up for their appointments.  That might be misleading to the customer. 



  • [deleted] replied

    Hi Besachi,

    thank you for reaching out to us; I apologize for the later reply, as we don't work on weekends.

    For the title, please advise which one it is - perhaps it can be changed with using Loco Translate line by line plugin.

    For the dates in customer panel; 

    This is not CSS, but JavaScript.

    You can add it in Custom CSS, I believe, but it has to go in between the <script>...</script> tags:

    <script>
    window.ameliaBooking = {
        cabinet: {
            pastDays: 0,
            futureDays: 30
        }
    }
    </script>

    By entering a higher number in the futureDays line you can increase the range of days customer will see in the Customer Panel.

    I hope this helps.

  •  8
    besachi3 replied

    That worked, thanks!