Description
This plugin provides a very simple slider block which is based on Swiper v8.
The plugin provides a UI for the most common swiper options (navigation, pagination, slides per view). But it is specifically made to be extended via PHP.
Therefore, it provides many PHP filter hooks to change its behaviour.
The plugin is used in some custom themes and through it’s PHP configuration it’s perfect for a locked-in design (eg agency, clients).
Through the filters it’s also very easy to extend in your own functions.php file.
If you want to report an issue or suggest features, please take a look at our GitHub repository.
Screenshots
Blocks
This plugin provides 3 blocks.
- Good Slider A carousel slider
- Slide A single slide
- Slider Item (deprecated) Deprecated: Use good-slider/slide instead.
Installation
Minimal Requirements
- PHP 8.1 or newer
- WordPress 6.2 or newer
Automatic Installation
We recommend installing the plugin extension through the WordPress Backend.
Manual Installation
- Upload the contents of the plugin zip file to the
/wp-content/plugins/
directory. - Activate the plugin through the Plugins menu in WordPress.
FAQ
-
How can I change the swiper arguments (like slides shown etc)
-
The UI currently allows for enabling/disabling navigation and pagination and the desktops default number of slides per view.
You can use the
good-slider/swiper-options
filter hook to set the swiper configuration for a specific block instance.
Have a look at the examples on GitHub.All the available arguments are documented in the Swiper v8 documentation.
-
Can I use my own enqueued Swiper script?
-
Yes you can use the
good-slider/swiper-script-handle
filter hook to change the name of the swiper script handle. -
Can I use more Swiper options?
-
By default, a stripped-down version of Swiper is enqueued, which only includes the most commonly used modules (A11y, Keyboard, Lazy, Navigation, Pagination).
You can use thegood-slider/swiper-script-handle
filter and set it togood-slider-swiper-full
to enqueue the full Swiper bundle with all modules, or you can use or own (see above). -
Does the plugin provide a UI for slider settings and styles in the block editor?
-
Thanks to recent additions to core, our slider and slide block now allow for setting most of the common styling settings:
– spacing
– colors (text, background, link)
– typography
– background image
– content positioning (justify-content + align-items)Also, v3.0.0 introduced a UI for enabling/disabling some of the most common settings of Swiper (navigation, pagination, slides shown).
We are working on adding more UI controls but also providing the possibility for developers to disable them.
-
How can I lock the editing experience (e.g. in patterns)?
-
The block integrates with features WordPress core provides to lock and curate the editing experience.
Template locking
Both the slider and slide block have atemplateLock
attributes, which you can set in variations, patterns or templates to any of the values[ "all", "insert", "contentOnly", false ]
.See the examples on GitHub.
Example 1: (fixed-slides.html) Create a slider with a fixed amount of slides, but flexible content of those slides:
Set thetemplateLock
attribute to “all” on the slider block and tofalse
on all slides.Allowed blocks
Since WordPress 6.5 you can set aallowedBlocks
setting on all instances of a block type upon registration.
If you want to globally restrict the allowed blocks inside slides, have a look at this new feature.Example 2: (allowed-blocks.html) Create a slider with restricted allowed blocks inside slides. Set the
allowedBlocks
attribute on the slide block to an array of allowed block types.Variations
You can also create block variations of the slide block with the innerBlocks and attributes prefilled.
See slide-variations.js in the examples directory.
Reviews
There are no reviews for this plugin.
Contributors & Developers
“Good Slider” is open source software. The following people have contributed to this plugin.
ContributorsTranslate “Good Slider” into your language.
Interested in development?
Browse the code, check out the SVN repository, or subscribe to the development log by RSS.
Changelog
3.1.0 (2024-03-14)
- Tweak: Add
allowedBlocks
attribute to slide block. - Fix: Fix default variations being inserted by custom block inserters.
- Docs: Add examples for locking and restricting the slider block.
3.0.1 (2024-03-14)
- Dev: Quick fix to remove some development files from the distributed plugin.
3.0.0 (2024-03-14)
!! This version includes breaking changes !!
- New: A new
good-slider/slide
block is introduced. This block has better naming and more block supports. - Breaking: The
good-slider/item
block is now deprecated. Upon opening the editor all instance will be converted togood-slider/slide
blocks. - Breaking: Remove the editor filters
good-slider.item.innerBlocks-settings
andgood-slider.slider.innerBlocks-settings
. Instead, use the newtemplateLock
property of the slider and slide block and theallowedBlocks
attribute for the slide block introduced in WordPress 6.5 - Breaking: Removed tag name selector from slider block. Instead, wrap it in a group.
- Tweak: Add more block supports to slide
- Tweak: Editing experience is now horizontal and works with scrolling.
- New: Adds UI controls for Swiper navigation, pagination and slides per view (+ sensible defaults for tablet/mobile)
- Dev: Add formatting for PHP, JS and CSS
- Dev: Better directory structure of blocks
- Dev: Add WordPress Playground blueprint for easy demo of plugin
- Dev: Migrate to WordPress code style
- Compatibility: Test up to WordPres 6.5
- License: Update to GPL v3
2.0.0 (2023-11-01)
!! Some breaking changes:
- Tweak: Changed block supports for slider and item block
- Slider block:
- Supports anchor/ID
- Supports background image
- Supports all colors (background, gradients, heading, button, link, text)
- Supports minimum height
- Supports top+bottom padding and margin
- Supports typography
- Slider item block
- Supports anchor/ID
- Supports background image
- Supports all colors (background, gradients, heading, button, link, text)
- Supports minimum height
- Supports padding (all sides)
- Supports typography
- Slider block:
- Tweak: Changed class name of main wrapper block to
wp-block-good-slider
.
The old classes werewp-block-good-slider-slider
+good-slider
and are not set on the block anymore.
A block deprecation was added to migrate blocks when viewing in editor. - Compatibility: Requires WordPress 6.2 (because of WP HTML Tag Manager)
- Compatibility: Tested up to WordPress 6.4
- Dev: Update @wordpress packages.
1.3.1 (2023-10-04)
- Fix: Fix swiper-full bundle not working (because Swiper is not exported to window).
1.3.0 (2023-08-02)
- Tweak/Fix: Disable left & right padding for slide-item block, because they break the slider layout
- Compatibility: Tested up to WordPress 6.3
1.2.0 (2023-03-08)
- Add a server side render callback to the item block
- Prevent empty item/slides from rendering
1.1.0 (2022-12-09)
- Added JavaScript filters to filter
InnerBlocks
settings/props for slider and item block.
1.0.0 (2022-11-28)
- The first public release of the plugin ??