Event price shows as free

Home Forums Ticket Products Event Tickets Plus Event price shows as free

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #1564535
    Kris Chislett
    Participant

    I have Events Cal Pro and Tickets Plus. On this event (and for all future events):
    https://amelianationaltennis.com/event/breakfast-at-wimbledon-social/

    …I want to be able to post the price of the event, but not have people purchase through the website. I have the Event “Tickets/Eventbrite Extension: Show Cost Field” extension installed. I have the price set to $10, but as soon as I add the RSVP data it returns the price to being Free.

    Pleas ehelp…I need to try and get this fixed ASAP.

    #1564538
    Kris Chislett
    Participant

    …actually when I add the price and save, it keeps reverting the price back to 0

    #1564918
    Brendan
    Keymaster

    Hi there,

    Thanks for emailing support and sorry you are having issues. Do you have Woocommerce installed and activated? I am not seeing it in your plugin info?

    Thanks,
    Brendan

    #1564920
    Kris Chislett
    Participant

    I did, but then I disabled as I don’t want people to buy tickets through the site…and that’s what it was making people do. People pay at the event for the tickets.

    #1566355
    Brendan
    Keymaster

    Hi there,

    In that case, what you need to do is enable Woocommerce. Then go into your Woocommerce settings and go to the Payment tab and choose Cash on Delivery. You might want to rename it to something more in line with a pay at event message.

    Let me know if that works.

    Thanks,
    Brendan

    #1566357
    Kris Chislett
    Participant

    Seems kind of backwards, no? It functions perfectly as it is right now…it just doesn’t need to display the price of “Free” at all. Is that not a line of code that will make “Free” disappear?

    #1566362
    Brendan
    Keymaster

    Hi there,

    If you solely want to remove the word “free”, you can try adding this code snippet at the end of your theme’s functions.php:

    /*
     * The Events Calendar - Make code empty if it's 0 or Free
    */
    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;
    }

    The snippet should work, but let me know if it doesn’t.

    Thanks,
    Brendan

    #1566684
    Kris Chislett
    Participant

    Worked. Perfect. Thanks!

    #1566862
    Brendan
    Keymaster

    Glad to hear!

    Thanks,
    Brendan

    #1583200
    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 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Event price shows as free’ is closed to new replies.