<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>THE MOLITOR FORUMS &#187; Topic: Issue when using a slider with youtube video</title>
		<link>http://www.themolitor.com/forums/topic/issue-when-using-a-slider-with-youtube-video</link>
		<description>THE MOLITOR FORUMS &#187; Topic: Issue when using a slider with youtube video</description>
		<language>en-US</language>
		<pubDate>Fri, 01 May 2026 14:08:45 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.themolitor.com/forums/search.php</link>
		</textInput>
		<atom:link href="http://www.themolitor.com/forums/rss/topic/issue-when-using-a-slider-with-youtube-video" rel="self" type="application/rss+xml" />

		<item>
			<title>THE MOLITOR on "Issue when using a slider with youtube video"</title>
			<link>http://www.themolitor.com/forums/topic/issue-when-using-a-slider-with-youtube-video#post-28789</link>
			<pubDate>Mon, 21 Apr 2014 14:17:23 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">28789@http://www.themolitor.com/forums/</guid>
			<description><p>Assuming you already using v2.0.2 of course.
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Issue when using a slider with youtube video"</title>
			<link>http://www.themolitor.com/forums/topic/issue-when-using-a-slider-with-youtube-video#post-28788</link>
			<pubDate>Mon, 21 Apr 2014 14:16:46 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">28788@http://www.themolitor.com/forums/</guid>
			<description><p>Excellent. I'm going to release an update (v2.0.3) with this fix.</p>
<p>If you change the version number at the top of your style.css file to 2.0.3, you'll have the latest version.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>brotherjuma on "Issue when using a slider with youtube video"</title>
			<link>http://www.themolitor.com/forums/topic/issue-when-using-a-slider-with-youtube-video#post-28786</link>
			<pubDate>Mon, 21 Apr 2014 13:52:16 +0000</pubDate>
			<dc:creator>brotherjuma</dc:creator>
			<guid isPermaLink="false">28786@http://www.themolitor.com/forums/</guid>
			<description><p>Thank you so much.<br />
This indeed fixed my issue.
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Issue when using a slider with youtube video"</title>
			<link>http://www.themolitor.com/forums/topic/issue-when-using-a-slider-with-youtube-video#post-28784</link>
			<pubDate>Mon, 21 Apr 2014 13:47:59 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">28784@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>Open up dualslider.php and change the following on lines 11-24 from this...</p>
<pre><code>while ($showPostsInCategory-&#62;have_posts()) : $showPostsInCategory-&#62;the_post();
$data = get_post_meta( $post-&#62;ID, &#039;key&#039;, true );
if(!empty($data[&#039;custom_link&#039;])){$customLink = $data[&#039;custom_link&#039;];}
if(!empty($data[&#039;custom_video&#039;])){$customVideo = $data[&#039;custom_video&#039;];}
if(!empty($customLink)){$postLink = $customLink;} else {$postLink = get_permalink();}
?&#62;
&#60;div class=&#34;slide&#34; id=&#34;slide&#60;?php echo $post-&#62;ID;?&#62;&#34;&#62;
	&#60;div class=&#34;slideMedia&#34;&#62;
		&#60;?php if($customVideo) {
			echo $customVideo;
		} else { ?&#62;
			&#60;a href=&#34;&#60;?php echo $postLink; ?&#62;&#34;&#62;&#60;?php the_post_thumbnail(&#039;dual&#039;); ?&#62;&#60;/a&#62;
		&#60;?php } ?&#62;
	&#60;/div&#62;&#60;!-- end slideMedia --&#62;</code></pre>
<p>...to this...</p>
<pre><code>while ($showPostsInCategory-&#62;have_posts()) : $showPostsInCategory-&#62;the_post();
$data = get_post_meta( $post-&#62;ID, &#039;key&#039;, true );
if(!empty($data[&#039;custom_link&#039;])){$postLink = $data[&#039;custom_link&#039;];} else {$postLink = get_permalink();}
?&#62;
&#60;div class=&#34;slide&#34; id=&#34;slide&#60;?php echo $post-&#62;ID;?&#62;&#34;&#62;
	&#60;div class=&#34;slideMedia&#34;&#62;
		&#60;?php if(!empty($data[&#039;custom_video&#039;])) {
			echo $data[&#039;custom_video&#039;];
		} else { ?&#62;
			&#60;a href=&#34;&#60;?php echo $postLink; ?&#62;&#34;&#62;&#60;?php the_post_thumbnail(&#039;dual&#039;); ?&#62;&#60;/a&#62;
		&#60;?php } ?&#62;
	&#60;/div&#62;&#60;!-- end slideMedia --&#62;</code></pre>
<p>Let me know if that helps.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Issue when using a slider with youtube video"</title>
			<link>http://www.themolitor.com/forums/topic/issue-when-using-a-slider-with-youtube-video#post-28783</link>
			<pubDate>Mon, 21 Apr 2014 13:34:42 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">28783@http://www.themolitor.com/forums/</guid>
			<description><p>I see what you mean. Looking into this...
</p></description>
		</item>
		<item>
			<title>brotherjuma on "Issue when using a slider with youtube video"</title>
			<link>http://www.themolitor.com/forums/topic/issue-when-using-a-slider-with-youtube-video#post-28780</link>
			<pubDate>Mon, 21 Apr 2014 12:54:19 +0000</pubDate>
			<dc:creator>brotherjuma</dc:creator>
			<guid isPermaLink="false">28780@http://www.themolitor.com/forums/</guid>
			<description><p>This is the code I copied there by changing the size as required of the video:</p>
<pre><code>&#60;iframe width=&#34;560&#34; height=&#34;315&#34; src=&#34;//www.youtube.com/embed/lU_M37tiX2U?list=PLa4LWPmbrwl7PD_aQBLzAgRweReo2xViT&#34; frameborder=&#34;0&#34; allowfullscreen&#62;&#60;/iframe&#62;</code></pre></description>
		</item>
		<item>
			<title>THE MOLITOR on "Issue when using a slider with youtube video"</title>
			<link>http://www.themolitor.com/forums/topic/issue-when-using-a-slider-with-youtube-video#post-28778</link>
			<pubDate>Mon, 21 Apr 2014 12:00:21 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">28778@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>I didn't receive any emails. Can you copy/paste the embed code you're trying to use?</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>brotherjuma on "Issue when using a slider with youtube video"</title>
			<link>http://www.themolitor.com/forums/topic/issue-when-using-a-slider-with-youtube-video#post-28776</link>
			<pubDate>Mon, 21 Apr 2014 11:11:04 +0000</pubDate>
			<dc:creator>brotherjuma</dc:creator>
			<guid isPermaLink="false">28776@http://www.themolitor.com/forums/</guid>
			<description><p>I sent you a private email
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Issue when using a slider with youtube video"</title>
			<link>http://www.themolitor.com/forums/topic/issue-when-using-a-slider-with-youtube-video#post-28768</link>
			<pubDate>Mon, 21 Apr 2014 09:56:01 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">28768@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>Can you provide a link to your site?</p>
<p>Also, can you provide the YouTube video embed code your using?</p>
<p>Let me know.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>brotherjuma on "Issue when using a slider with youtube video"</title>
			<link>http://www.themolitor.com/forums/topic/issue-when-using-a-slider-with-youtube-video#post-28753</link>
			<pubDate>Mon, 21 Apr 2014 04:22:46 +0000</pubDate>
			<dc:creator>brotherjuma</dc:creator>
			<guid isPermaLink="false">28753@http://www.themolitor.com/forums/</guid>
			<description><p>When I create a youtube video for the slider, it changes by default all the sliders to be same youtube even initially they had images as sliders.<br />
If I remove the youtube video, everything is fine. Issue only when I use the youtube video as a slider.
</p></description>
		</item>

	</channel>
</rss>
