Support » Plugin: WordPress Gallery Plugin - NextGEN Gallery » Pagination issue with v 3.6

  • Resolved bob reeves

    (@bob-reeves)


    Hi,

    I have just updated to version 3.6 and have noted that thumbnail galleries are now showing a pagination link at the bottom of the page, even though pagination is turned off.

    I hope you can help.

    The page I need help with: [log in to see the link]

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Support mweichert

    (@mweichert)

    We’ll have to look into this. It looks likely that might be something we accidentally introduced. If so, we’ll release a fix next Weds to address it.

    In the mean time, you can hide pagination by going to your WordPress Dashboard -> Appearance -> Customizer -> Additional CSS and add the following:

    .ngg-navigation {
      display: none !important;
    }

    Note, the above will hide pagination for ALL galleries. If you want to apply that rule to just this page, then you’d use this instead:

    .page-id-3953 .ngg-navigation {
      display: none !important;
    }

    We hope that helps.

    Cheers!

    Thread Starter bob reeves

    (@bob-reeves)

    Hi @mweichert,

    Thanks for your very quick response.

    I have added the above css with only partial success.

    The .page- id works perfectly
    The .ngg-navigation does not work

    Looking forward to your reply.

    Plugin Support mweichert

    (@mweichert)

    Hi Bob,

    In that case, you might have to make the CSS selector a little more specific. Mind trying the following please and letting us know if that works for you:

    body .ngg-navigation {
      display: none !important;
    }

    Thanks for the patience.
    Cheers.

    Thread Starter bob reeves

    (@bob-reeves)

    Hi @mweichert,

    That worked, thank you very much for your help.

    I look forward to your next update.

    Regards

    Bob

    Hey all,
    this issue is caused by the following line in the NextGen pagination stylesheet:

    /* ----------- Gallery navigation -------------*/
    .ngg-navigation {
        display: block !important;

    On my site it overrules the display:none I already had in place because it’s loaded after my themes stylesheet.

    mweichert,
    Thanks for the temporary fix. Very pleased with the rapid response.

    This does fix the number not showing up beneath the thumbnails but the arrows to move between the photos no longer show up at all. Any ideas?

Viewing 7 replies - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.