Viewing 7 replies - 1 through 7 (of 7 total)
  • Hello Myra,

    I suffered the same issue but i went a little further in the forums and found this solution that worked for me. Hopefully it works for you.
    https://wordpress.org/support/topic/next-link-missing-on-october-month-view

    Hopefully this helps!

    Thread Starter Myra

    (@sitesandsearch)

    Hi, thank you!
    Maybe you can you explain what to do with that code? Should I paste it in the functions.php of the child theme?

    Yes,

    That’s exactly what I did and it add the next month to the calendar view.

    Thread Starter Myra

    (@sitesandsearch)

    Hi,

    I read your post, but that code snippet doesn’t work. The page turns white.

    And, it is strange because there is an event on May 1st! So the month May should appear….

    Maybe anyone else can help?

    Hi there, @myra!

    I think @csanchez07’s solution might still be a good call on this one. If you got a blank screen when using that snippet, that typically means there was a formatting error in your functions.php file.

    Perhaps try adding the snippet at the very bottom of the file, or directly after the opening <?php tag at the top.

    Cheers!
    Geoff

    Thread Starter Myra

    (@sitesandsearch)

    Hi Geoff,

    There is already code in the functions file. If I place it below that code, so below the closing ?> tag this happens: http://prntscr.com/6lj8m5

    If I place it before the closing ?> the website is fine, but the eventspage is white. That’s also the case if I place the code after the opening tag at the top.

    This is the existing code:

    <?php
    
    register_nav_menu( 'footer', __( 'FooterMenu', 'zeeflow_language' ) );
    
    if ( ! function_exists( 'themezee_register_sidebars' ) ):
    function themezee_register_sidebars() {
    
    	// Register Sidebars
    	register_sidebar( array(
    		'name' => __( 'Main Sidebar', 'zeeFlow_language' ),
    		'id' => 'sidebar-main',
    		'description' => __( 'Appears on posts and also pages (in case Sidebar Pages has no widgets) except frontpage/fullwidth template.', 'zeeFlow_language' ),
    		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
    		'after_widget' => '</aside>',
    		'before_title' => '<h3 class="widgettitle">',
    		'after_title' => '</h3>',
    	));
    	register_sidebar( array(
    		'name' => __( 'Sidebar Pages', 'zeeFlow_language' ),
    		'id' => 'sidebar-pages',
    		'description' => __( 'Appears on static pages only. Leave this widget area empty to use Main Sidebar on pages.', 'zeeFlow_language' ),
    		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
    		'after_widget' => '</aside>',
    		'before_title' => '<h3 class="widgettitle">',
    		'after_title' => '</h3>',
    	));
    	register_sidebar( array(
    		'name' => __( 'tekstbov', 'zeeFlow_language' ),
    		'id' => 'tekstbov',
    		'description' => __( 'tekstboven', 'zeeFlow_language' ),
    		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
    		'after_widget' => '</aside>',
    		'before_title' => '<h3 class="widgettitle">',
    		'after_title' => '</h3>',
    	));
    
    	}
    endif;
    
    	?>
    Plugin Author Brian

    (@brianjessee)

    Ok so the coding from that other thread should go between these two:

    endif;
    //Add Coding Here
    ?>

    At the end of the file, does that work there?

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘No 'next' link in monthly calender (bug?) from April and fur’ is closed to new replies.