
Originally Posted by
Graniteman22
Everything else seems to be working fine. Everything loaded into the Admin- config correctly and all other files are in the correct place. When I click on an image, the screen darkens like it is supposed to and the arrows are present when there are additional images. But the actual images don't show up. I just finished making the website live so the revised web address is
http://cumingsmemorials.com.
The plugin you are using on the above site is not zen magnific, and the images are loading fine in my browser.
You may need to clear your catch.
If you have in fact swapped out zen magnific for another, it will be hard to diagnose the issue but my first guess would be a jQuery conflict in which case you could swap any jQuery code
from this:
Code:
$(document).ready(function() {
$('#whatever_class_or_id').whatever_function({
to:
Code:
var jq = $.noConflict();
jq(document).ready(function() {
jq('#whatever_class_or_id').whatever_function({