Viewing 1 replies (of 1 total)
  • Thread Starter photosbygi

    (@photosbygi)

    Never mind figured it out. Some of my photo descriptions had quotes (“) in it for web links. I found another thread that talked about replacing the ” with ‘ and it fixed my problems.

    In image-gallery-reloaded.php find the following lines:

    $desc = $attachment -> post_content;
    $title = $attachment -> post_excerpt;

    and replace them with:

    $desc = str_replace(‘”‘, ‘& quot’, $attachment -> post_content);
    $title = str_replace(‘”‘, ‘& quot’, $attachment -> post_excerpt);

    NOTE: REMOVE THE SPACE BETWEEN & QUOT

Viewing 1 replies (of 1 total)
  • The topic ‘Image not Found: Gallery’ is closed to new replies.