To Begin, I'm using this plugin

http://wordpress.org/extend/plugins/my-youtube-playlist/ & this theme, www.press75.com/themes/on-demand/this-is-a-sample-video-post-4/

My intention is to have the youtube playlist displayed in the gray area on the theme, where there is currently only 1 video displayed. my intention was to use the Youtube Code embed field of the theme as the place where i could put the plugin shortcode and therefore have the plugin create the playlist needed for the post. However I've been unable to get the plugin to execute the shortcode once it is NOT placed in the content area of the post.

The theme creates a video container Div (the gray area for the video) once either a video link is posted or video embed code is entered into the relevant field of the theme.

I've tried the following

  • Hardcoding the [myyoutubeplaylist LO3n67BQvh0, WGOohBytKTU, iwY5o2fsG7Y, PyKNxUThW4E, 1cX4t5-YpHQ, SJ183htYl-8, eWwoHPrrJYY, bja2ttzGOFM] into the single post php file to see if the plug would pick it up. No Luck. It simply output the shortcode to the screen

  • Hardcoding <?php echo do_shortcode('[myyoutubeplaylist LO3n67BQvh0, WGOohBytKTU, iwY5o2fsG7Y, PyKNxUThW4E, 1cX4t5-YpHQ, SJ183htYl-8, eWwoHPrrJYY, bja2ttzGOFM]'); ?> to see if it would pick it up. No Luck. It simply outputs the shortcode to the screen.

  • Having the template dump the shortcode parameters into the following:
    <?php echo do_shortcode( get_video($post->ID); ?>. No Luck. It simply outputs the shortcode to the screen

  • Repeating all the above outside of the video container div created by the theme

I'm fresh out of idea's, so any and all help would be GREATLY appreciated

link|improve this question

0% accept rate
Would love to see a solution for this too. – marcamillion Dec 16 '10 at 2:51
feedback

4 Answers

Put this in your functions.php file:

add_filter('widget_text', 'do_shortcode');

Then use the shortcode in your sidebar as you would in the main content area.

link|improve this answer
tried it. Still no luck. the code is still just displayed on the screen instead of the playlist being generated... – Akil Dec 16 '10 at 19:35
Ah bummer. All indications show that this should work. I hope you find a solution because now I'm curious. – Corey Dec 17 '10 at 14:33
feedback

Why don't you try this plugin?

http://wordpress.org/extend/plugins/smart-youtube/

link|improve this answer
feedback

or try this one - TubePress

you can code it into your theme in serveral way, and you can easily edit it's appearance with CSS...

edit: how to embedd tubepress shortcode outside post/page (it looks to me like some of this comes with pro version tho)

link|improve this answer
tried this plugin. However, 1st, I can't figure out how to get it to display a gallery of SPECIFIC videos I choose, 2. The free version doesn't allow you to call the shortcode outside of the post loop (which isnt that big a deal, because if it does what I want I'll gladly pay for it) – Akil Dec 16 '10 at 22:29
you can display a gallery but making a youtube list (kind of a feed) - which you then import into TubePress... for embedding outside the post, check my answer again - I edited it. – pootzko Dec 16 '10 at 23:24
thanks.. will probably buy it and hope it solves the issue since I can't find any other solution – Akil Dec 18 '10 at 4:20
feedback
<?php echo myYoutubePlaylist('[myyoutubeplaylist WnY59mDJ1gg, bKwQ_zeRwEs]'); ?>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.