Magento - Banner不工作

时间:2015-04-07 08:23:08

标签: php magento

我在cashmerepoloclub.com上有一个网站,但它运作不正常。横幅显示第一张幻灯片然后停止响应,有时它不显示自己。我试图替换它的原始文件,启用它,禁用其他未使用的扩展但没有任何作用。有谁可以帮助我吗?
提前感谢你 Akshat Gupta

2 个答案:

答案 0 :(得分:0)

Banner没有加载其他图片,因为有jquery.easing

enter image description here 在google jquery-easingjquery-easing-def-is-not-a-function上搜索此错误。您可以看到此post

答案 1 :(得分:0)

缺少jQuery Fancy框的源文件。在页眉中包含jquery.fancybox-1.3.4.js。您可以从here

下载jQuery Fancy box

然后检查问题是否已解决。如果横幅仍有问题,请替换以下代码

jQuery(function(){  
jQuery('#camera_wrap_4').camera({
height: '36%',
loader: 'bar',
pagination:false,
thumbnails:false,
fx         : 'random',
hover:true,
imagePath: '../images/'
});
});

var jq = jQuery.noConflict();
jq(function(){  
jq('#camera_wrap_4').camera({
height: '36%',
loader: 'bar',
pagination:false,
thumbnails:false,
fx         : 'random',
hover:true,
imagePath: '../images/'
});
});

希望它对你有所帮助。

相关问题