Magento Frontend Homepage – Image Slider Not Working Fix

frontendimagejavascriptslider

I am trying to solve an issue that I do not even know when started. My general frontend template has a image slides on the right column. All internal pages of my website show the image slider without problems, however the homepage hides the slides. If you use the chrome inspection, all the elements are there, but not visible. Any idea of how to solve this?

Homepage: http://lojaanalitica.com.br/

Example of internal page: http://lojaanalitica.com.br/combos.html

Best Answer

Thanks for the links they are super helpful! Looks like on the homepage you have some JavaScript errors this would cause your slider to not initialize on the homepage hence why its hidden.

jQuery(document).ready(function($){
  jQuery('.flexsliderdd').flexslider({
    animation: "slide"
  });
});s

Remove the s Also its outputting a typeError that sequence is not a function var homeSequence = $("#homeslider-sequence").sequence(options).data("sequence");

Related Topic