How edit List View

Home Forums Calendar Products Events Calendar PRO How edit List View

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #122815
    latiuscia
    Participant

    Hi,
    In list view I would like move the title before the Tribe Bar. I tried editing events-calendar/views/list.php but the Title is inside the content Main Events Content. How can I extract the Title end echo it before the Tribe Bar?

    Thanks a lot.
    Latiuscia

    #123060
    Barry
    Member

    Hi!

    Please do review our Themer’s Guide in the first instance as directly editing core plugin files, even templates, generally is a bad idea.

    What you could do though is basically pull the following code out of your custom list/content.php file:

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

    And add it to your custom list.php template instead, position it just above:

    <!-- Tribe Bar -->
    <?php tribe_get_template_part( 'modules/bar' ); ?>

    Does that help?

    #130052
    Barry
    Member

    This thread’s not seen much activity for the last couple of weeks so I’ll go ahead and close it. Of course if you still need help with this or any other issue please don’t hesitate to create a new thread (or threads) and one of the team will be only too happy to help. Thanks!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘How edit List View’ is closed to new replies.