Free Full Width Slider
Smart Slider 3 is the best rated free full width slider plugin in the WordPress Plugin Directory. More than 70.000 happy users choose us!

Beautiful Visual Interface
The interface is clear and simple, every action is straightforward. Creating a new slider and adding slides are quick and easy process.

Fully Responsive Slider
You can adjust the layers on tablet and mobile view. Smart Slider 3 allows you to hide any layer of your full width slider on any device.

Productos Destacados
jQuery(document).ready(function($) {
var $wpcs = $("#woo-product-carousel-wrapper-1436635924");
$wpcs.owlCarousel({
/*updated code of the carousel for the version 2.2.1*/
rewind:false,
loop:true,
autoWidth:false,
responsiveClass:true,
autoplayHoverPause:false,
autoplay:true,
dots:false,
autoplayTimeout: 4000,
dotData:true,
dotsEach:false,
rtl:false,
slideBy:1,
nav:false, // we are using custom navigation arrow, so lets turn the default navigation off
navText:['‹','›'],
smartSpeed: 1000, // it smooths the transition, and it should be lower than the speed of the auto play
responsive:{
0 : {
items:1
},
350: {
items:1 },
480: {
items:1 },
600 : {
items:2 },
768:{
items:2 },
978:{
items:4 },
1198:{
items:4 }
}
});
// stop on hover but play after hover out
$wpcs.hover(
function(){
$wpcs.trigger('stop.owl.autoplay');
},
function(){
$wpcs.trigger('play.owl.autoplay');
}
);
// custom navigation for the owl carousel
$(".next-1436635924").click(function(){
$wpcs.trigger("next.owl.carousel");
});
$(".prev-1436635924").click(function(){
$wpcs.trigger("prev.owl.carousel");
});
});