Viewing 11 posts - 1 through 11 (of 11 total)
  • Posted in: Dante
  • #134941
    jfarr
    Member
    Post count: 32

    We’ve currently updated our website with an SSL changing our http to https. Since doing so accessing the vimeo full screen video will not work. Our video found here (http://vimeo.com/108526249). I’ve tried adding an s to http but the link will not open then. How can I fix this to play the video? We have a pro account with Vimeo. Thanks

    #134983
    Rui Guerreiro – SUPPORT
    Keymaster
    Post count: 25779

    Hi,

    Did you installed the https plugin below?

    http://wordpress.org/plugins/wordpress-https/

    -Rui

    #135179
    jfarr
    Member
    Post count: 32

    Yes we did…

    #135385
    Kyle – SUPPORT
    Moderator
    Post count: 35880

    Can you please try adding this to your functions.php file:

    function sf_video_youtube($url, $width = 640, $height = 480) {
                preg_match('/[\\?\\&]v=([^\\?\\&]+)/', $url, $video_id);
                return '<div class="sf-video-wrap"><iframe itemprop="video" src="//www.youtube.com/embed/'. $video_id[1] .'?wmode=transparent" width="'. $width .'" height="'. $height .'" ></iframe></div>';
            }	
    
    function sf_video_vimeo($url, $width = 640, $height = 480) {
                preg_match('/http:\/\/vimeo.com\/(\d+)$/', $url, $video_id);		
                return '<div class="sf-video-wrap"><iframe itemprop="video" src="//player.vimeo.com/video/'. $video_id[1] .'?title=0&byline=0&portrait=0?wmode=transparent" width="'. $width .'" height="'. $height .'"></iframe></div>';
            }
    
    function sf_get_embed_src($url) {
                if (strpos($url,'youtube')){
                    preg_match('/[\\?\\&]v=([^\\?\\&]+)/', $url, $video_id);
                    if (isset($video_id[1])) {
                        return '//www.youtube.com/embed/'. $video_id[1] .'?autoplay=1&wmode=transparent';
                    }
                } else {
                    preg_match('/https:\/\/vimeo.com\/(\d+)$/', $url, $video_id);
                    if (isset($video_id[1])) {
                        return '//player.vimeo.com/video/'. $video_id[1] .'?title=0&byline=0&portrait=0&autoplay=1&wmode=transparent';
                    }
                }
            }

    – Kyle

    #135783
    jfarr
    Member
    Post count: 32

    Gives me a blank white screen.

    #135784
    Kyle – SUPPORT
    Moderator
    Post count: 35880

    Ok I’ll forward this to Mohammad for you

    – Kyle

    #136794
    jfarr
    Member
    Post count: 32

    Hey guys I’m curious if you have a solution yet for this. It’s been 3 days now and we still haven’t figured out how to fix the video. Thank you for your time.

    #137069
    Mohammad – SUPPORT
    Moderator
    Post count: 27441

    Hi,
    I apologize for delay. It seems shortcode html output issue. I will forward this to developer and he will assist you shortly.
    Thanks
    Mohammad

    #137223
    Swift Ideas – Ed
    Keymaster
    Post count: 15264
    This reply has been marked as private.
    #185573
    jalopyhead
    Member
    Post count: 1

    Is there any further instruction on this? I am running into the same issue. When I add the “s”, nothing happens, but when I use regular http, the video doesn’t play.

    #185575
    Swift Ideas – Ed
    Keymaster
    Post count: 15264

    Hi there,

    What URL are you using for the video?

    – Ed

Viewing 11 posts - 1 through 11 (of 11 total)

You must be logged in and have valid license to reply to this topic.

License required for one of the following items
Login and Registration Log in · Register