Flexslider在Magento:在主页上工作,而不是在类别页面上

时间:2014-04-17 11:03:08

标签: jquery magento flexslider

我在主页上使用flexslider作为横幅以及页脚上的推荐位。 您可以在这里查看两个工作:http://propshop24.in/new/index.php

但是,奇怪的是,推荐滑块不适用于类别页面。您可以在此处查看:http://propshop24.in/new/index.php/bar-party.html

它一直给我这个错误:

Uncaught TypeError: undefined is not a function

我也试过使用noConflict(),但没有用。

我确定这是一个小故障。我错过了什么?我知道如何解决它?

1 个答案:

答案 0 :(得分:2)

问题出在skin/frontend/default/propshopjm/js/init.js 该文件的内容是:

var jjm = jQuery.noConflict();
jjm(document).ready(function() {
    jjm(".searchonoff").click(function(){
        jjm(".searchpop").fadeToggle("open");
    });
    $('.testislider').flexslider({
        animation: "slide",
        easing: "swing",
        animationLoop: true,
        slideshow: true,
        slideshowSpeed: 5000,
        animationSpeed: 400,
        controlNav: false,
        directionNav: true
    });
/* $('.testislider').bxSlider(); */
});

将行$('.testislider').flexslider({替换为jQuery('.testislider').flexslider({