Viewing 2 replies - 1 through 2 (of 2 total)
  • I found the problem. WP automatically adds a content filter on — turning it into –

    A temporary fix:
    Edit youtube_simplegallery.php and find line 173:

    else $thumb[1] = $thumbnails;

    After it, add :

    $thumb[1] = str_replace('& #8211;', '--', $thumb[1]);

    Find line 204:

    else $video[1] = $videolink;

    After it, add:

    $video[1] = str_replace('& #8211;', '--', $video[1]);

    NOTE: Remove space between & # in both addes lines.

    Thread Starter gasjeerbij

    (@gasjeerbij)

    Thanks alot it works!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: YouTube SimpleGallery] Some YT Links not working’ is closed to new replies.