Okay
  Public Ticket #2603958
Modifications
Closed

Comments

  • Jonathan Waters started the conversation

    I have added extras to a service that do not require a duration.  When people add the extra through the catalog layout, is shows "Duration: /".  Is there any way to just remove the "Duration" section?

    Also, the currency is Australian Dollars, and it shows as "AU$", which is not common here, we just use "$".  Is there any way to change this?


    Kind regards

    Jonathan

  • [deleted] replied

    Hello Jonathan, 

    Thank you for your purchase. 

    The duration information can be hidden on the front-end with adding custom CSS. Please try adding this format HTML to the page where you have Amelia shortcode 

    <style>
    .am-extra-duration {display:none !important;}
    </style>

    and let me know if it helped.

    It isn't possible to change the currency code for Australian dollar, unfortunately. I will add this as a feature request and forward it to our developers so it can be considered for modification for the future updates of Amelia. 

    If you have any other questions or concerns feel free to open a new ticket and we will gladly help out.

  • Jonathan Waters replied

    Hi Marija

    I tried to add the CSS but it didn't work.  The section on the page doesn't have that particular class, I have added a screenshot to show you the inspect panel.


    Thanks

    Jonathan




  • [deleted] replied

    Hi Jonathan, 

    You mentioned using the Catalog view, so this was CSS for that view, for the Extra information part. 

    If you use the step by step booking view, or you want to hide the Duration info  in the part where Extra is chosen, please try this one instead: 

    <style>
    #am-step-booking-catalog0 > div.am-select-service > form > span > div > div:nth-child(2) > div.el-col.el-col-14
    {display:none !important;}
    </style>
    

    and let me know if it helped.