• I’ve upgraded this theme to the latest 4.0.1. Everything seems to be working fine except the homepage showcase.

    When you go to the second page of the showcase, it loads a half loaded page – it’s not getting anything back for the_content(); – however if I remove the ?paged=2 from the URL, it loads the page fine but on the first page of the showcase.

    /page/2/?paged=2&portfolioID=108&termID#ut-portfolio-items-108-anchor

    The above URL, which should load the second page, falls down at the following code and I can’t see why.

    <?php $content = get_the_content(); 
    
        if( !empty($content) && !empty( $pagequery ) || $template_name == 'templates/template-team.php' ) : ?>                        
    
        <?php if( $ut_section_width == 'centered' ) : ?>
    
            <div class="grid-container section-content"><div class="grid-100 mobile-grid-100 tablet-grid-100">
    
            <?php else : ?>
    
                <div class="section-content ">
    
            <?php endif; ?> 
    
            <?php the_content(); ?>
    
            <?php if( $template_name == 'templates/template-team.php' ) : ?>
    
                <?php get_template_part( 'templates/template' , 'team' ); ?> 
    
            <?php endif; ?>                                        
    
            <?php if( $ut_section_width == 'centered' ) : ?>
    
                </div></div>
    
            <?php else : ?>
    
                </div>
    
            <?php endif; ?>
    
        <?php endif; /* End Output for left header center */ ?>
  • The topic ‘[Theme: Brooklyn] Showcase page 2 not loading page.’ is closed to new replies.