Display RSVP Information / Ticket Cost in Photo View Grid?

Home Forums Ticket Products Event Tickets Plus Display RSVP Information / Ticket Cost in Photo View Grid?

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1432413
    developer
    Participant

    Dear Team,

    i want to use the part with RSVP-information in the photo View of Events:


    `

    <div class="tribe-events-event-cost">
        <span class="ticket-cost"></span>
    
    </div>
    

    `

    I created a template in my child-theme und pasted this part of code. but nothing happens.

    Is there a way to geht RSPVs displayed in photo view not only in list view?

    Thanks in advance, Melanie

    • This topic was modified 6 years, 3 months ago by developer.
    • This topic was modified 6 years, 3 months ago by Courtney.
    #1432576
    Courtney
    Member

    Hey there

    At this time, the RSVP/Buy Now buttons appear only in List View and on single events. If you think that is something you would like as a feature I encourage you to visit our User Voice Page and either upvote an existing request or make a new request there.

    You can suggest it it http://tribe.uservoice.com.

    If you are up for the task, you could customize this yourself with some PHP. See our Themer’s Guide to get started or hire a developer at Find A Customizer. Calling for this will take more than CSS code to achieve it.

    Is there anything else I can help you with?

    Thanks
    Courtney 🙂

    #1433221
    developer
    Participant

    Dear Courtney,

    thank you for your answer.
    This part of Code you see in the screenshot
    i see in this code in

    the-events-calendar/src/views/list/single-event.php

    and I copied it in

    my-child-theme/tribe-events/pro/photo/single-event.php

    But nothing happens. Can you give me an hint what might be wrong?
    Thanks in advance, Melanie

    • This reply was modified 6 years, 3 months ago by developer.
    • This reply was modified 6 years, 3 months ago by developer.
    • This reply was modified 6 years, 3 months ago by developer.
    • This reply was modified 6 years, 3 months ago by developer.
    • This reply was modified 6 years, 3 months ago by developer.
    #1433232
    developer
    Participant

    Here is the screenshot of the relevant part of the code. Unfortunately I cannot paste it in this field.

    #1434958
    Courtney
    Member

    Hi there Melanie

    add_action( 'tribe_events_after_the_event_title', function() {
        if (
            function_exists( 'tribe_is_photo' )
            && function_exists( 'tribe_tickets_buy_button')
            && tribe_is_photo()
        ) {
            tribe_tickets_buy_button();
        }
    } );
    

    Give that a try and see how it works.

    Thanks
    Courtney 🙂

    #1454319
    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 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Display RSVP Information / Ticket Cost in Photo View Grid?’ is closed to new replies.