Adding some text next to the price (under the page header)on a single event page

Home Forums Calendar Products Events Calendar PRO Adding some text next to the price (under the page header)on a single event page

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1441590
    ambitious2017
    Participant

    I would like to add the following copy: (inc. FREE lunch) after the £10 price on the page enclosed. I have tried adding in the price field on the single event page but it does not show up. Many thanks

    #1444702
    Barry
    Member

    Hi there @ambitious2017,

    You could use some custom code something like the following example, which could be added either to a custom plugin (preferred) or else to your theme’s functions.php file.

    add_filter( 'tribe_get_cost', function( $cost ) {
        return ! empty( $cost )
            ? $cost . ' includes free lunch!'
            : $cost;
    } );

    Does that help? Our apologies also for the increased delay in response times. We’re now working through the backlog and things should get back to normal shortly 🙂

    #1464975
    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 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Adding some text next to the price (under the page header)on a single event page’ is closed to new replies.