Next and previous month links do not display

Home Forums Calendar Products Events Calendar PRO Next and previous month links do not display

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1192267
    Michelle
    Participant

    I tried adding the

    #1192268
    Michelle
    Participant

    The next and previous month links do not display on top or calendar; they only display on bottom.

    I tried adding the code to functions.php as found in forum so that prev / next months always appear, but this did not help.

    Please take a look at my events calendar
    https://thoughtinmotion.net/events/

    Thank you

    • This reply was modified 9 years, 6 months ago by Michelle.
    #1192437
    Geoff
    Member

    Hi Michelle,

    Welcome to the forums!

    You should be able to add the month view navigation above the calendar using this snippet in your functions.php file:

    add_action( 'tribe_events_after_header', 'output_custom_code' );
    
    function output_custom_code() {
    // Check if displaying month view
    if( tribe_is_month() ) {
    tribe_get_template_part( 'month/nav' );
    }
    }

    It might require some CSS styling to position the links how you would like them to display, but that should get the links in there for you. 🙂

    Cheers!
    Geoff

    #1202673
    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 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Next and previous month links do not display’ is closed to new replies.