This topic has 5 replies, 4 voices, and was last updated 10 years by Abe.

  • Author
  • #7474
     luvconnexion
    Participant

    Hi guys, how do I keep my home page video open at all times. I need it to be visible without having to click on the button. Thanks!

    #7556
     SQadmin
    Keymaster

    Hi, You need to add this javascript code to footer.php just before the wp_footer line:

    COPY CODE
    
    jQuery(document).ready(function() {
    jQuery("a.play").each(function (e) {
    	var videoId = jQuery(this).attr('data-videoid');
    	//e.preventDefault();
    	jQuery(".videoLoad").hide();
    	var videotoload = jQuery(this).attr("href"),
    		viewportHeight = (jQuery(window).height()) - 533,
    		scrolltovideo = jQuery("#markerPoint-"+videoId).offset().top;
    	if (viewportHeight > 100) {
    		scrolltovideo = scrolltovideo - (viewportHeight / 2);
    	} else {
    		scrolltovideo = scrolltovideo - 55;
    	}
    
    	jQuery('.play').show();
    	jQuery(this).addClass('disabled');
    
    	jQuery("html, body").animate({
    		scrollTop: scrolltovideo
    	}, 500, function () {
    		jQuery("#"+videoId+" iframe").attr('src', videotoload);
    		jQuery("#"+videoId+" .videoLoad").fadeIn('slow');
    		jQuery("#"+videoId).slideDown(900);
    	});
    });
    });
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    #8080
     luvconnexion
    Participant

    Thanks for reply. I’ve tried pasting the code, but i’m not getting any results, any ideas?

    #8141
     Abe
    Keymaster

    I have modified the code. Try again please.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    #8784
     pvamaster
    Participant

    no work

    #8811
     Abe
    Keymaster

    Please put a link to your site to see if you indeed added it right

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

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

The forum ‘Sweetdate – WordPress’ is closed to new topics and replies.

Log in with your credentials

Forgot your details?