Plugin info
Maintenance & Compatibility
Maintenance score
Possibly abandoned • Last updated 1425 days ago • 1 reviews
Is No BS Image Slider abandoned?
Possibly abandoned (last update 1425 days ago).
Compatibility
Similar & Alternatives
Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.
Description
This is an ultra-minimal no-frills responsive and accessible image carousel / slider.
There are many robust image slider plugins already. They work well and have a lot of features, some with even more features at the premium tier.
I’m not saying that they don’t have their place but that sometimes they are excessive.
This plugin is for someone who just wants to have linked images scroll by in a loop on their website.
How To Use
No BS Image Slider works by leveraging what WordPress already provides, by creating a new custom post type and taxonomy.
- To begin, create your slides by using the Image Slide type. Be sure to add a featured image, and provide a link in the link field. Captions can be supplied by filling out the exerpt.
- Create a slider by adding an Image Slider taxonomy. This allows a slide to be in multiple sliders.
- Use the No BS Image Slider widget to configure which slider you want displayed, and the duration of each slide.
A great rundown of the plugin is available on the Planetjon blog.
Shortcode
To manually insert a slider, use the shortcode [nbis].
You must provide at minimum the slider slug.
The shortcode attributes are
- slider=”slug”
- duration=”number” (seconds, default 5)
- transition=”number” (seconds, default 1.25)
- showcounter=”yes|no” (default no)
- lazy=”yes|no” (default no)
Widget
A widget that exposes all of the above options is available.
Installation
Frequently Asked Questions
No BS Image Slider has minimal backend coding and zero external dependencies.
The slider is also optimized purely with CSS, no JavaScript is used.
The CSS weighs in at under 2 kilobytes, blowing away all of the major slider plugins by a mile.
While there are no admin options for this, it can be done by using custom CSS.
Sliders are ID’d with no-bs-image-slider-<slug> and slides are ID’d with nbis-slide-<slideId>.
An approach would be to style the slider scrollpane as Flexbox, and set the order on the slides.
#no-bs-image-slider-slug .scrollpane {
display: flex;
}
#no-bs-image-slider-slug .scrollpane #nbis-slide-1 {
order: 1;
}
#no-bs-image-slider-slug .scrollpane #nbis-slide-2 {
order: 0;
}
Review feed
Wow REALLY minimalistic
Screenshots
Changelog
1.8
- Transition duration parameter added.