Fancybox link not working
Permalink 1 user found helpfulIs this a fancybox problem since that's what's in the "rel=" attribute?
Thanks

I'll post the question to their forums as well just in case.
Thanks
I get this error trying to do fancy box.
TypeError: 'undefined' is not an object (evaluating 't.hide')
so its a problem with fancy box, not the add-on. not sure how to fix tho.
The theme I'm using ("Slate") is already including the fancybox lightbox in its code, so any other addons that I try that have the fancybox will fail because the theme and the addon's copies of fancybox will conflict with each other.
The solution for Sortable Fancybox Gallery was to modify the following file on my server:
SITEROOT/packages/sortable_fancybox_gallery/blocks/sortable_fancybox_gallery/controller.php
... and removing the following code (should be lines #14-22):
public function on_page_view() { if ($this->enableLightbox) { $html = Loader::helper('html'); $bv = new BlockView(); $bv->setBlockObject($this->getBlockObject()); $this->addHeaderItem($html->css($bv->getBlockURL() . '/fancybox/jquery.fancybox-1.3.1.css')); $this->addHeaderItem($html->javascript($bv->getBlockURL() . '/fancybox/jquery.fancybox-1.3.1.pack.js')); } }
Worked like a champ!