Month to Month navigation CSS solution still won't appear above grid view

Home Forums Calendar Products Events Calendar PRO Month to Month navigation CSS solution still won't appear above grid view

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1017928
    Michael
    Participant

    I’ve tried the css solution posted in the knowledge base and in several threads here to display the month to month nav above (as well as below) the month grid view and it isn’t yielding results.

    And for bonus, it’d be nice to have the same nav above the list view as well, either to next month, or to next set of events which seems to be week based which are be default shown below?

    Thanks!

    #1018059
    Brian
    Keymaster

    Hi,

    Thanks for using our plugins. I can help out here.

    I took a look at your site and see why the css solution is not working.

    It appears the theme has custom templates in it for the Events Calendar and they have removed the navigation above the month view.

    You could add it back by modifying the template in your theme.

    It should be in this file:

    yourtheme/tribe-events/month/content.php

    There look for this text:

    <!– Month Header –>

    And the area below should look like this:

    <!-- Month Header -->
    <?php do_action( 'tribe_events_before_header' ) ?>
    <div id="tribe-events-header" <?php tribe_events_the_header_attributes() ?>>

    <!-- Header Navigation -->
    <?php tribe_get_template_part( 'month/nav' ); ?>

    </div>

    You are most likely missing this part or it is commented out:

    <!-- Header Navigation -->
    <?php tribe_get_template_part( 'month/nav' ); ?>

    List View
    As for the list view.

    The file is in this location:

    yourtheme/tribe-events/list/content.php

    And look for this coding:

    <!-- List Header -->
    <?php do_action( 'tribe_events_before_header' ); ?>
    <div id="tribe-events-header" <?php tribe_events_the_header_attributes() ?>>

    <!-- Header Navigation -->
    <?php do_action( 'tribe_events_before_header_nav' ); ?>
    <?php tribe_get_template_part( 'list/nav', 'header' ); ?>
    <?php do_action( 'tribe_events_after_header_nav' ); ?>

    </div>
    <!-- #tribe-events-header -->

    That should get the navs back in place then you would be able to use that css show them.

    Let me know how that works out.

    Thanks

    #1023665
    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 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Month to Month navigation CSS solution still won't appear above grid view’ is closed to new replies.