• Do you know if WordPress can have embedded video clips, that open in larger pop-up windows, for higher resolution viewing?

    pls advise. i would totally appreciate your help with this.

    thanks!

Viewing 6 replies - 1 through 6 (of 6 total)
  • That would be nice to know… anyone?

    Maybe something like the DHTML popup? Its not free though and its available at https://www.dpopup.com/dhtml-popup-youtube.html

    Hey Z,

    Thanks for the help mate! To be honest, I’ll buy the plugin if it’s out there which I know it exists because I’ve seen them on some sites… however I want it to be in ajax, i like the effect better (you know when you click on it, it feels cooler) ?? hahaha

    Lol ya know what you mean.

    I’ll keep an eye out for one, will let you know if I do come across one.

    Thank you sir ??

    Alright, I’ve found the plugin..

    https://www.press75.com/video-elements-theme-demo

    Although I downloaded that theme and realized that there’s no plugin for that it seems that it’s embedded in the index.php here’s the pdf maybe someone can have a look through it and let me know what i need to do or what codes i need to copy and place inside my theme.

    I believe the jquery player is referred to “Instant Play” where as a video will pop up on the same screen and play rather then reloading the page.

    PDF set up doc: https://www.mediafire.com/?sharekey=48181547c03403e3aaca48175a79d1c3e04e75f6e8ebb871

    HEre’s the code from the index.php

    <?php get_header(); ?>
    <div id="wrapper">
        <div id="contentwrapper">
        	<div id="content">
    			<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
                <div id="item">
                	<div id="covershot"><a href="<?php $key="videolink"; echo get_post_meta($post->ID, $key, true); ?>" rel="mediabox[<?php $key="videowidth"; echo get_post_meta($post->ID, $key, true); ?> <?php $key="videoheight"; echo get_post_meta($post->ID, $key, true); ?>]" class="thetip" Title="<?php the_title() ?> :: Click here to instantly play this video"><?php the_excerpt(); ?></a></div>
                    <div id="post-title"><a href="<?php the_permalink() ?>"><h3><?php the_title() ?></h3></a></div>
                    <div id="description"><p><?php the_content_rss('', TRUE, '', 50); ?></p></div>
                    <div id="meta">
                    	<div id="ratings"><?php if(function_exists('the_ratings')) { the_ratings(); } ?></div>
                        <div id="commentslink"><a href="<?php comments_link(); ?>">Comments (<?php comments_number('0', '1', '%'); ?>)</a></div>
                    </div>
                </div>
    			<?php endwhile; ?>
                <?php else : ?>
                <div id="item">
                	<h3>No matching results</h3>
                    <p>You seem to have found a mis-linked page or search query with no associated results. Please trying your search again. If you feel that you should be staring at something a little more concrete, feel free to email the author of this site or browse the archives.</p>
                </div>
                <?php endif; ?>
                <div id="pagination">
                	<?php next_posts_link('<span class="navforward"></span>') ?><?php previous_posts_link('<span class="navback"></span>') ?>
                </div>
            </div>
            <?php get_sidebar(); ?>
        </div>
    </div>
    <?php get_footer(); ?>
Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘embedded video clips in pop up window’ is closed to new replies.