Hi there, is there a possibility to use the testimonial slider and show more testimonials at a glance? I want to have 3 or 4 testimonials to show together and then slide further.
Thanks!
Hi,
Currently there is no instant setting for that. I am sorry.
However, you may want to try these steps:
- Install and activate the TC Custom JavaScript plugin
- Go To Appearance > Custom JavaScript
- Paste the following code into the provided box
;(function($) {
'use strict'
if ( $().owlCarouselFork ) {
$('.roll-testimonials').not('.owl-carousel').owlCarouselFork({
navigation : false,
pagination: true,
responsive: true,
items: 4,
itemsDesktop: [3000,4],
itemsDesktopSmall: [1400,4],
itemsTablet:[970,1],
itemsTabletSmall: [600,1],
itemsMobile: [360,1],
touchDrag: true,
mouseDrag: true,
autoHeight: true,
autoPlay: $('.roll-testimonials').data('autoplay')
});
}
})(jQuery);
The column settings for specific device’s screen sizes present on these lines:
items: 4,
itemsDesktop: [3000,4],
itemsDesktopSmall: [1400,4],
- Update
I hope that helps.
Regards,
Kharis
aThemes Support