Okay
  Public Ticket #2635068
Events
Closed

Comments

  • Justin Terrell started the conversation

    hello I need to change the text that says "free" to say prepaid or just get rid of the free text, please tell me how I can do this either by editing the php or in the options, thanks

  • Justin Terrell replied

    Here's a screenshot of what I'm trying to remove.


    Thanks.

  • [deleted] replied

    Hello Justin,

    Thank you for your purchase. 

    You can remove that with adding custom CSS. 

    You can try adding this CSS to the page: 

    .am-event-price.am-event-free {display:none !important;}

    or this one if you want to hide the price even if it isn't 0

    .am-event-price {display:none !important;}

    If you don't have an option to add custom CSS, you can add it as format HTML to the page, the HTML would be: 

    <style>
    .am-event-price.am-event-free {display:none !important;}
    </style>

    Let me know if this helped!