Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author Nick the Geek

    (@nick_thegeek)

    Please disable all plugins and test, even the plugins you don’t think are the problem. Please make sure they are all disabled at once, not just one at a time because sometimes more than one plugin is to blame.

    If this gets better you can start turning on your plugins in small groups. I like to go 4 at a time so I get done 4 times faster and narrow the problem to just the 4 plugins when things break again.

    If the problem you are trying to diadnose is with one of the StudioPress plugins you may leave that active to see if the other plugins are conflicting with it.

    Once you know which plugin(s) is the problem please contact the plugin developer for support.

    If disabeling all plugins does not resolve this please report back with as much information as you can about what happened during this part of the testing.

    Thread Starter rabbistarak

    (@rabbistarak)

    I have de-activated all the plugins like you said but still the second page shows blank. The home featured widget I am using is using this code

    <?php
    /** Add the home featured section */
    add_action( ‘genesis_before_loop’, ‘eleven40_home_featured’ );
    function eleven40_home_featured() {

    /** Do nothing on page 2 or greater */
    if ( get_query_var( ‘paged’ ) >= 2 )
    return;

    genesis_widget_area( ‘home-featured’, array(
    ‘before’ => ‘<div class=”home-featured widget-area”>’,
    ) );

    }
    do you think the bold command is stopping the plugin to show the navigation menu on page 2

    Thread Starter rabbistarak

    (@rabbistarak)

    I was right that command was stopping the plugin to show the navigation menu so now I have deleted that command and everything is work fine.

    Plugin Author Nick the Geek

    (@nick_thegeek)

    To be clear, everything is working now?

    Thread Starter rabbistarak

    (@rabbistarak)

    everything was, now I can only see posts on page 1 and 2 but page 3 shows blank. there must be a code which can show posts on all pages.

    Thread Starter rabbistarak

    (@rabbistarak)

    Hello I am still looking for help.

    Plugin Author Nick the Geek

    (@nick_thegeek)

    what did you do for your paged code? The code you found was the problem.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘[Plugin: Genesis Featured Widget Amplified] navigation links not working on page 2’ is closed to new replies.