Plugin info

Total downloads: 16,092
Active installs: 100
Total reviews: 8
Average rating: 4.9
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 3 language(s)
Contributors: 2
Last updated: 8/10/2020 (1969 days ago)
Added to WordPress: 12/8/2011 (14 years old)
Minimum WordPress version: 3.8
Tested up to WordPress version: 5.5.17
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 1969 days ago • 8 reviews

22/100

Is Floating NextPrev abandoned?

Possibly abandoned (last update 1969 days ago).

Compatibility

Requires WordPress: 3.8
Tested up to: 5.5.17
Requires PHP: f

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

Aspexi Social Media Slider
Rating 4.6/5 (18 reviews)Active installs 2,000
Floating Social Media Links
Rating 4.8/5 (19 reviews)Active installs 1,000
Floating Contact Button
Rating 4.6/5 (8 reviews)Active installs 1,000
WP Click to Chat – Email, Live Chat, Call & Book Now Buttons
Rating 5.0/5 (7 reviews)Active installs 1,000
Simple Sticky Header on Scroll
Rating 4.3/5 (6 reviews)Active installs 1,000

Description

The Floating NextPrev displays buttons for navigation between your blog posts.
The icons are displayed only within the pages of posts and can promote a better navigation for your visitors.

Contribute

You can contribute to the source code in our GitHub page.

License

Installation

  • Upload plugin files to your plugins folder, or install using WordPress built-in Add New Plugin installer;
  • Activate the plugin;
  • Navigate to Settings -> Floating NextPrev and select the design model.

Frequently Asked Questions

What is the plugin license?

  • This plugin is released under a GPL license.

Why the plugin is not working?

  • Probably due to incompatibility of jQuery. Check to see if this plugin modifying the jQuery version of your WordPress.

How navigating only in posts in the same category?

Paste this code in functions.php file of your theme:

add_filter( 'floating_nextprev_in_same_cat', '__return_true' );

How to hide in some categories?

Use this example in functions.php file of your theme:

function floating_nextprev_exclude_categories( $excluded_categories ) {
    $excluded_categories = '1,2,3'; // add your categories ids.

    return excluded_categories;
}

add_filter( 'floating_nextprev_excluded_categories', 'floating_nextprev_exclude_categories' );

How can I control the display?

You can control the display using the floating_nextprev_display filter.
Example how to display only in news category:

function floating_nextprev_only_in_news( $display ) {
    return in_category( 'news' );
}

add_filter( 'floating_nextprev_display', 'floating_nextprev_only_in_news' );

How to change the “Previous” and “Next” titles?

Use the floating_nextprev_prev_title and floating_nextprev_next_title filters.
Example:

function floating_nextprev_prev_title( $title ) {
    return __( '←', 'textdomain' );
}

add_filter( 'floating_nextprev_prev_title', 'floating_nextprev_prev_title' );

function floating_nextprev_next_title( $title ) {
    return __( '→', 'textdomain' );
}

add_filter( 'floating_nextprev_next_title', 'floating_nextprev_next_title' );

Review feed

No reviews available

Screenshots

  1. Plugin in action.

    Plugin in action.

  2. Plugin settings.

    Plugin settings.

Changelog

2.3.0 – 2016/08/10

  • Improved how check for the first and last pages in order to avoid wrong arrow buttons.