We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use Underscore templates for HTML rendering?
The text was updated successfully, but these errors were encountered:
Would be cool to see a solution for this. Really like your plugin and the idea of using the standard gallery.
Asked in the wp.org forum for a current solution (or tip) for this :) wp.org plugin forum
Sorry, something went wrong.
Having responsive options adjustable using the UI is in the works, but unfortunately without ETA.
I posted a possible workaround in the thread, pasted here for completeness:
The easiest way to accomplish this is to use slick’s slickSetOption method. Enqueue a JS file which uses slick-slider-core as $deps:
slickSetOption
slick-slider-core
$deps
jQuery( document ).ready( function() { jQuery( '.slick-slider-wrapper .slick-slider' ).slick( 'setOption', 'responsive', [ { breakpoint: 480, settings: { slidesToShow: 1, } }, { breakpoint: 768, settings: { slidesToShow: 2, } }, { breakpoint: 992, settings: { slidesToShow: 4, } }, ], true ) } )
Adjust the selector, breakpoints and settings to your specific needs.
tyrann0us
No branches or pull requests
Use Underscore templates for HTML rendering?
The text was updated successfully, but these errors were encountered: