- This topic has 1 reply, 2 voices, and was last updated 12 years, 1 month ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
Support site for Tips and Tricks HQ premium products
by
Tips and Tricks HQ Support Portal › Forums › WP Lightbox Ultimate › Lightbox Ultimate – overlaying a 2nd layer over the top of an embedded html
Definitely a conflict with the theme as I can get it working on my subdomain. The popup seems to load twice with an opacity applied over the initial popup. If I close the popup and reopen the link it works properly. However if I close that popup I can no longer click the popup link. I see someone else has had a similar problem ( https://support.tipsandtricks-hq.com/forums/topic/newbie-here-just-trying-to-get-it-to-work-at-all ) but there isn’t a listed solution
I have added the code to the bottom of the page below.
http://www.richmondremedial.com.au/online
Any help would be appreciated.
Hi, I can see two issues here:
1. Your theme is hardcoding an older version of the main jQuery library.
<script type="text/javascript" src="http://www.RichmondRemedial.com.au/wp-content/themes/boldygreen/js/jquery-1.4.2.min.js"></script>
Now there are two versions of the main jQuery library in the same page:
<script type="text/javascript" src="http://www.RichmondRemedial.com.au/wp-content/themes/boldygreen/js/jquery-1.4.2.min.js"></script> (bad)
<script type='text/javascript' src='http://www.RichmondRemedial.com.au/wp-includes/js/jquery/jquery.js?ver=1.7.2'></script> (good)
You can learn more about it here: https://support.tipsandtricks-hq.com/forums/topic/lightbox-ultimate-clicking-on-the-anchor-does-not-display-any-overlay
2. Your theme has a built-in prettyPhoto library. So it’s conflicting with the prettyPhoto library of Lightbox Ultimate.
<script type="text/javascript" src="http://www.RichmondRemedial.com.au/wp-content/themes/boldygreen/js/jquery.prettyPhoto.js"></script>