Prestashop Fancybox JS 无法正确加载
Prestashop Fancybox JS cannot load correctly
我的新 Prestashop 网站有一些 JS 问题。
Fancybox 似乎会制造冲突。
这是 Chrome console
中的错误
Uncaught TypeError: $(...).fancybox is not a function
at HTMLDocument.<anonymous> (custom.js:216)
at u (core.js:39)
at Object.fireWith [as resolveWith] (core.js:39)
at Function.ready (core.js:39)
at HTMLDocument.H (core.js:39)
因为你的主题没有使用Fancybox。
所以你需要包含 fancybox JS 脚本。
它位于此处:
所以在
之前添加
<script type="text/javascript" src="https://taglioestampa.it/js/jquery/plugins/fancybox/jquery.fancybox.js" ></script>
我的新 Prestashop 网站有一些 JS 问题。 Fancybox 似乎会制造冲突。 这是 Chrome console
中的错误Uncaught TypeError: $(...).fancybox is not a function
at HTMLDocument.<anonymous> (custom.js:216)
at u (core.js:39)
at Object.fireWith [as resolveWith] (core.js:39)
at Function.ready (core.js:39)
at HTMLDocument.H (core.js:39)
因为你的主题没有使用Fancybox。 所以你需要包含 fancybox JS 脚本。
它位于此处:
所以在
之前添加<script type="text/javascript" src="https://taglioestampa.it/js/jquery/plugins/fancybox/jquery.fancybox.js" ></script>