2

我要疯了,想弄清楚这一点。在 wordpress 中,加载了 easy fancybox 插件以加载所有必要的文件,但我什么也做不了。我尝试过画廊、单张图片、iframe。

我没有看到与其他插件的任何冲突,只有一个 jquery 版本正在加载。

我基本上从一切正常加载的网站上复制了代码:http: //www.familypet.com/photos/

这是当前未加载的: http: //testwp.familypet.com/photo-gallery/

任何帮助,将不胜感激

谢谢

4

1 回答 1

1

http://testwp.familypet.com/photo-gallery/网站上,您缺少iframe javascript 代码,但您使用的是fancybox-iframe 类

http://www.familypet.com/photos/中没有缺少该代码

尝试将此代码添加到 testwp 站点并将其放在/* Auto-click */注释上方(第 151 行):

/* iFrame */
$('a.fancybox-iframe, li.fancybox-iframe a, area.fancybox-iframe, li.fancybox-iframe a').fancybox( $.extend({}, fb_opts, { 'type' : 'iframe', 'width' : 950, 'height' : 550, 'padding' : 0, 'scrolling' : 'auto', 'autoScale' : false, 'titleShow' : true, 'titlePosition' : 'inside', 'titleFromAlt' : true }) );
于 2013-04-25T07:01:01.833 回答