• Resolved mickylinqy

    (@mickylinqy)


    Thanks for this plugin – it’s beautiful.

    Is there a way for me to remove the suggested videos at the end of my video play? Here’s how I set it up.

    1) Uploaded video to YouTube.
    2) On the Embed tab, I unchecked the option “Show suggested videos when the video finishes”
    3) Copied the URL “https://www.youtube.com/embed/nSa1boRsLuc?rel=0&showinfo=0c”

    On WordPress, in a page, I did the following and published.
    1) Added this shortcode: [wp-video-popup video=”https://www.youtube.com/embed/nSa1boRsLuc?rel=0&showinfo=0c”%5D
    2) Added the CSS Class*: <my-image-url/>
    *I choose to use a video screenshot image file instead of a button or “Play Video” text. Is this alright?

    The video works on my website, but I can’t seem to get rid of the suggested video option. What am I missing?

    Thanks in advance!

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author David Vongries

    (@davidvongries)

    Hi @mickylinqy,

    the URL parameters in the shortcode will be ignored as the plugin fetches the video ID and creates the embed code from it automatically.

    With the latest version, a filter has been introduced that lets you add parameters to the created embed URL like this:

    function prefix_your_custom_embed_url_attributes( $video_url ) {
        $video_url .= '&rel=0';
        return $video_url;
    }
    
    add_filter( 'wp_video_popup', 'prefix_your_custom_embed_url_attributes' );

    The code above will hide the related videos at the end. For more details, please check out the updated description on the plugin page – https://www.ads-software.com/plugins/responsive-youtube-vimeo-popup/

    Hope that helps! ??

    Best,
    David

    Thread Starter mickylinqy

    (@mickylinqy)

    Hi @davidvongries,

    Thank you for the prompt reply.

    So sorry as I am a new WordPress user and unfamiliar with coding too. Where should I add the filter/parameters you introduced earlier?

    Thank you for your time.

    Micky

    Plugin Author David Vongries

    (@davidvongries)

    Hey @mickylinqy,

    this code goes into your child-theme’s functions.php (in case you’re using a child theme).

    Otherwise, you can create your own plugin and add the code there. This sounds harder than it is – just Google it up, it’s pretty simple.

    Last but not least, you can use a plugin like this – https://de.www.ads-software.com/plugins/insert-php/ to add php code to your website.

    Best,
    David

    Thread Starter mickylinqy

    (@mickylinqy)

    Hi David,

    Perfect thanks for the detailed explanation. I will use one of the suggested methods above.

    Thanks!

    Micky

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Remove suggested video’ is closed to new replies.