Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 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

    photosbygi

    (@photosbygi)

    Anita did you have any luck solving this? I am having the same issues.

Viewing 2 replies - 1 through 2 (of 2 total)