Image Slider ?!?
Hi, maybe I'm blind, but is there a shortcode in the betheme like the visual composer carousel? I want like to add the logos of customers in a simple carousel. (or any other picture). I think the client slider version is not the best way for it, because I can't say how many picture per row, Carousel size, etc.
If it isn't in there. Please insert it :-)
Best regards
Arnim
If it isn't in there. Please insert it :-)
Best regards
Arnim
Comments
you can see the full list of shortcodes/builder items with examples on this site:
http://themes.muffingroup.com/be/splash/
thanks
It's maybe an idea to insert it ;-)
You also have many more sliders, please visit the website and check it in the shortcodes tab.
function sliderSlider(){
var pager = function( el, i ){
return ''+ i +'';
};
$('.content_slider_ul').each(function(){
var slider = $(this);
var count = 1;
var centerMode = false;
if( slider.closest( '.content_slider' ).hasClass( 'carousel' ) ){
count = slickAutoResponsive( slider );
$(window).bind( 'debouncedresize', function(){
slider.slick( 'slickSetOption', 'slidesToShow', slickAutoResponsive( slider ), false );
slider.slick( 'slickSetOption', 'slidesToScroll', slickAutoResponsive( slider ), true );
});
}
if( slider.closest( '.content_slider' ).hasClass( 'center' ) ){
centerMode = true;
}
slider.slick({
cssEase : 'cubic-bezier(.4,0,.2,1)',
dots : true,
infinite : true,
touchThreshold : 10,
speed : 300,
centerMode : centerMode,
centerPadding : '20%',
prevArrow : '',
nextArrow : '',
adaptiveHeight : true,
appendDots : slider.siblings( '.slider_pager' ),
customPaging : pager,
rtl : rtl ? true : false,
autoplay : window.mfn_sliders.slider ? true : false,
autoplaySpeed : window.mfn_sliders.slider ? window.mfn_sliders.slider : 5000,
slidesToShow : count,
slidesToScroll : count
});
});
}
How can I add this manipulated function into the child-theme?
Best regards
Arnim