Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter EmuZone

    (@emuzone)

    How can I remove the iFrame (ect) <?php tern_wp_youtube_video(); ?> from within the post content and add it in the template manually which I have done using <?php tern_wp_youtube_video(); ?>?

    Plugin Author ternstyle

    (@mpraetzel)

    Change line 30 of /core/video.php from:

    add_filter('the_content','WP_ayvpp_content');

    to:

    //add_filter('the_content','WP_ayvpp_content');

    Thread Starter EmuZone

    (@emuzone)

    This term (<?php tern_wp_youtube_video(); ?>)is causing an empty YouTube iFrame in none Automatic Youtube Video Posts when I add it in manually using the <?php tern_wp_youtube_video(); ?> term!

    How can I get the video holder (ect)<?php tern_wp_youtube_video(); ?>
    Automatic Youtube Video Posts iFrame to only display on Automatic Youtube Video Posts as its leaving an empty YouTube iFrame in other post?

    Plugin Author ternstyle

    (@mpraetzel)

    Check to see if the video exists first.

    <?php if(get_post_meta($post->ID,'_tern_wp_youtube_video',true) { ?>
    <?php tern_wp_youtube_video(); ?>
    <?php } ?>
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Changing Display Order’ is closed to new replies.