As previously announced via banners and our newsletters, support is no longer available through this platform.

For easier navigation, you can still click on "Submit a Ticket" here, choose the appropriate category, and you'll be redirected to the correct support channel for your plugin.

You can still access your previous tickets and browse public tickets, but please note that responding to tickets is no longer possible.

Paid customers: Please log in to your store account for support.

Pre-purchase questions: Use the support widget in the bottom-right corner of our websites:
https://wpamelia.com
https://wpdatatables.com
https://wpreportbuilder.com

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!