Okay
  Public Ticket #2418996
setup
Closed

Comments

  • Dragos started the conversation

    Hey, I'm trying to do 2 things, please let me know if they're possible:

    - set a buffer from the current time (not between 2 similar events). For example, don't let anyone book for 12h from now.

    - increase the font size on the frontend. The calendar is quite difficult to read.

  • Dragos replied

    Oh... one more thing: any way to turn off the meet link? The google calendar invite automatically adds one.

  • [deleted] replied

    Hello Dragos, 

    Thank you for your purchase.

    - set a buffer from the current time (not between 2 similar events). For example, don't let anyone book for 12h from now.

    If you are talking about Services in Amelia, there isn't such option, unfortunately. There are the Minimum time required before booking:  setting but it is for setting up a period of time for which customers will not be able to book before a time slot, and the setting Period available for booking in advance: setting with which you setup the following period of time for which customers will be able to book appointments . You will find these in Amelia -> Settings -> General.

    If you are talking about Events, you can choose date/time for each event separately when the booking will start/end. 

    - increase the font size on the frontend. The calendar is quite difficult to read.

    There isn't an option for this in the plugin but it an be achieved with adding custom CSS probably, if you need help with that let me know where exactly you want to increase the font and I will gladly help out. 

    Oh... one more thing: any way to turn off the meet link? The google calendar invite automatically adds one.

    There isn't a possibility to turn it off from Amelia, unfortunately. 

    If you have any further questions feel free to ask.

  • Dragos replied

    Thanks, Marija!

    I'd be glad to have that CCS code, please. Thanks!

    One more: any way to remove the colored rectangular header?

    You can see it here: https://crop.studio/quick-call/

  • [deleted] replied

    You are welcome, Dragos. 

     if you need help with that let me know where exactly you want to increase the font and I will gladly help out. 

    Could you please tell me where exactly do you want to increase the font? A screenshot would be helpful! Thanks. 

    Yes, please try adding this format HTML to the page: 

    <style> .am-service-gallery {display:none;}
    </style>

    and let me know if it helped. 

  • Dragos replied

    The HTML worked, thanks!

    I'd like to modify the days and time slots in the calendar.

  • [deleted] replied

    You are welcome!

    Please try adding this format HTML as well (add it bellow .am-service-gallery {display:none;})

    between the style tags: 

    .c-weekdays {font-size: large !important;}
    .c-day-content {font-size: large !important;}

    I set it to large but you can put some size in pixels there if you want. 

    Let me know if it helped!

  • Dragos replied

    It works just for the days, not the time slots.

  • [deleted] replied

    Hello Dragos,

    Apologies for replying late, we are not working on weekends.

    Please try adding this HTML for the time slots: 

    <style>
    span.el-radio-button__inner{
    font-size: 15px !important;}
    </style>

    and let me know if it helps.