Change Title on single Organizer & Venue page?

Home Forums Calendar Products Events Calendar PRO Change Title on single Organizer & Venue page?

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #102787
    Patti
    Participant

    Looking for a way to change the “Upcoming Events” title found after organizer & venue info on their respective “single” pages to something more like the following:

    Upcoming Events with Organizer Name
    Upcoming Events at Venue Name

    Forum support search doesn’t turn up anything useable. I’m looking at each of the page’s code, I don’t see it hard coded and guessing it has to do with tribe_include_view_list()

    #103021
    Julie Kuehl
    Participant

    Hey mcewin,

    Have you seen our tutorial https://theeventscalendar.com/altering-or-removing-headings-on-calendar-views/? Does that have information to help you do what you’re looking for?

    – Julie

    #103162
    Patti
    Participant

    I did not see that, which is odd because I literally searched on “Upcoming Events” and that page never showed up. Please do not mark this a closed or resolved just yet, because I’m not 100% certain this will do what I need. It looks like it’s only a way to remove the “Upcoming Events”, not a way to append to it.

    #103186
    Patti
    Participant

    What worked was to add the content.php file to my THEME/tribe-views/list folder and make the following edits…
    Beginning @ line 19:

    <!-- List Title -->
    <?php do_action( 'tribe_events_before_the_title' ); ?>
    <h2 class="tribe-events-page-title"><?php echo tribe_get_events_title() ?></h2>

    <?php // Checks if this is an organizer page
    if(tribe_is_organizer()) : ?>
    <h3 style="text-align:center">with <?php echo tribe_get_organizer(); ?></h3>
    <?php endif; ?>

    <?php // Checks if this is a venue page
    if(tribe_is_venue()) : ?>
    <h3 style="text-align:center">at <?php echo tribe_get_venue(); ?></h3>
    <?php endif; ?>

    Thank you for your time, Julie.

    #983046
    Support Droid
    Keymaster

    This topic has not been active for quite some time and will now be closed.

    If you still need assistance please simply open a new topic (linking to this one if necessary)
    and one of the team will be only too happy to help.

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Change Title on single Organizer & Venue page?’ is closed to new replies.