cost free showing when using events calendar and event ticket

Home Forums Welcome! Pre-Sales Questions cost free showing when using events calendar and event ticket

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1465468
    Donna
    Guest

    We are using event calendar with event ticket (free version_ and we are trying to remove the free cost for all events by using custom CSS.

    We tried adding the following css code to Divi Theme and the Custom Css plugin, but it doesn’t seem to work.

    .single-tribe_events .tribe-events-schedule .tribe-events-cost {
    display: none;
    }

    Do you have any other suggestions?

    #1466236
    rubixtech
    Participant

    Hi,

    I have the same issue and would like to know what to do.

    Thanks

    #1466639
    Donna
    Guest

    Hi,

    I found the following add added to the functions.php and it fixed my issue:

    add_filter ( 'tribe_get_cost', 'tribe_not_show_free', 10, 3 );
    function tribe_not_show_free ( $cost, $post_id, $with_currency_symbol ) {
    
    if ( $cost == 0 || $cost == 'Free' ) {
    $cost = '';
    }
    return $cost;
    }
    
    #1466725
    Cliff
    Member

    Hi, Donna. Thanks for your question and sharing what worked for you.

    As a heads up: You posted in our Pre-Sales forum from a user account that doesn’t have any purchases associated with it (or accidentally if you forgot to login first).

    If you do have a paid account login with at least one current license, please login to that account and then post in one of the paid forums.

    If you don’t have a paid account login, I’m afraid we’re not equipped to provide technical support for current plugin users here in our Pre-Sales Forum. If you’re using one of our free plugins, such as The Events Calendar or Event Tickets, you can request assistance on their respective WordPres.org Support Forums (we do not provide technical support for users there, either–only via our paid forums).

    Possibly helpful references:

    Thank you for your understanding and thank you for using our plugins.

    ===


    @rubixtech
    , if you have follow-up questions, please create a new thread in our paid forums.

    Thank you.

    #1486150
    Support Droid
    Keymaster

    Hey there! This thread has been pretty quiet for the last three weeks, so we’re going to go ahead and close it to avoid confusion with other topics. If you’re still looking for help with this, please do open a new thread, reference this one and we’d be more than happy to continue the conversation over there.

    Thanks so much!
    The Events Calendar Support Team

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘cost free showing when using events calendar and event ticket’ is closed to new replies.