In Scrollable list, if slide doesn’t change when you click next/prev button, the possible reason is impact of theme’s or another plugin’s script.
To resolve this issue, please add this code to Custom JS field in Content Views >> Settings page:
/* Content Views - Fix Scrollable List next/prev doesn't work */ setTimeout(function() { $(".carousel-control.left").off("click").on("click",function(){$(this).parent().cvcarousel("prev")}),$(".carousel-control.right").off("click").on("click",function(){$(this).parent().cvcarousel("next")}); }, 2000);
If you are using Content Views Free, please add above code with this instruction (click here).
Best regards,