Dulle2tm
Member
Posted 4 months ago #
Hi there! I am unable to get my FancyBox content to work, whether it is images or just simply content. When i click a link, it loads a grey transparent page without the content in it, and i am unable to exit it. See http://investmentcamp.dk/?p=271 for a demo of the problem. Try clicking any one of the images.
The theme should be compatible and i have checked footer.php.
http://wordpress.org/extend/plugins/easy-fancybox/
I'm not understanding you here. Are you aiming to open something in FancyBox with a link like:
<a id="example-show" class="showLink" onclick="showHide('example');return false;" href="#"><img src="http://unichive.com/sp_1.png" alt="random" width="125" height="125" /></a>
?
If so, there are several things goign wrong here.
1. The link has no href so there is nothing to open in FancyBox
2. The link has onclick="showHide('example');return false;" which will hinder fancybox from firing. You might try without the "return false;" but UI cannot guarantee it will work.
3. You are running colorbox and even thickbox scripts on the same page. This is asking for conflicts as these scripts are aiming to do the same as fancybox.
And...
4. You say you checked your footer.php but it still does not seem to have the call wp_footer() which results in missing script files. See http://codex.wordpress.org/Theme_Development#Footer_.28footer.php.29 for more.