• Resolved gajusmusculus

    (@gajusmusculus)


    Hi,
    when showing a gallery (not a single post site) I have a thumbnail above a video with gray background and a player symbol. both, thumbnail and gray video link to the same video on the single post site which is correct. I simply want to have one thumbnail to link to this video as in your examples.
    I use external videos from vimeo which are not listed public.
    Tried with different settings (e.g. public) or other external videos like youtube but with the same result

    Any help would be appreciated

    Using the free version of All-in-One Video Gallery

    • This topic was modified 7 months, 4 weeks ago by gajusmusculus.
Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor wpvideogallery

    (@wpvideogallery)

    The issue is likely caused by WordPress automatically adding paragraph (<p>) and break (<br>) tags to your content using the wpautop filter. This can sometimes interfere with the formatting of your gallery.

    To disable this behavior, please add the following PHP code to the bottom of your theme’s functions.php file:

    add_action( 'wp', function() {
    remove_filter( 'the_content', 'wpautop', 10 );
    });

    This should resolve the issue.

    If the issue persists, please share your gallery page URL so we can check it directly and assist you further. Alternatively, you can submit a support ticket here to share your gallery page URL privately.

    Thread Starter gajusmusculus

    (@gajusmusculus)

    Thanks for your advice. At first, your solution didn’t work, but now the problem is solved.

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

The topic ‘Double Video Link in gallery’ is closed to new replies.