<?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: Removing &quot;Continue&quot; and posting link from Dual Slider</title>
		<link>http://www.themolitor.com/forums/topic/removing-continue-and-posting-link-from-dual-slider</link>
		<description>THE MOLITOR FORUMS &#187; Topic: Removing &quot;Continue&quot; and posting link from Dual Slider</description>
		<language>en-US</language>
		<pubDate>Tue, 28 Apr 2026 17:00:21 +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/removing-continue-and-posting-link-from-dual-slider" rel="self" type="application/rss+xml" />

		<item>
			<title>DoubleZed on "Removing &quot;Continue&quot; and posting link from Dual Slider"</title>
			<link>http://www.themolitor.com/forums/topic/removing-continue-and-posting-link-from-dual-slider#post-10384</link>
			<pubDate>Fri, 25 May 2012 07:58:38 +0000</pubDate>
			<dc:creator>DoubleZed</dc:creator>
			<guid isPermaLink="false">10384@http://www.themolitor.com/forums/</guid>
			<description><p>To remove both the link from the photo as well as remove the "Continue" text from the dual slider, you can do this:</p>
<p>So to disable the Continue link in the dualslider.php go to Line 16, where you should find code like below:</p>
<pre><code>16 &#60;?php  if ($data[ &#039;custom_link&#039; ]) { ?&#62;
17 &#60;a class=&#34;sliderMore&#34; href=&#34;&#60;?php echo $data[ &#039;custom_link&#039; ]; ?&#62;&#34;&#62;Continue »&#60;/a&#62;&#60;/p&#62;
18 &#60;?php } else { ?&#62;
19 &#60;a class=&#34;sliderMore&#34; href=&#34;&#60;?php the_permalink() ?&#62;&#34;&#62;Continue »&#60;/a&#62;&#60;/p&#62;
20 &#60;?php } ?&#62;</code></pre>
<p>To leave everything as is and just disable it by commenting, you need to comment out the lines 17 and 19. Comment out the WHOLE line unless you want to leave something in place where the "Continue" link was. You should get something like this:<br />
<pre><code>16 &#60;?php  if ($data[ &#039;custom_link&#039; ]) { ?&#62;
17 &#60;!--&#60;a class=&#34;sliderMore&#34; href=&#34;&#60;?php echo $data[ &#039;custom_link&#039; ]; ?&#62;&#34;&#62;Continue »&#60;/a&#62;&#60;/p&#62;--&#62;
18 &#60;?php } else { ?&#62;
19 &#60;!--&#60;a class=&#34;sliderMore&#34; href=&#34;&#60;?php the_permalink() ?&#62;&#34;&#62;Continue »&#60;/a&#62;&#60;/p&#62;--&#62;
20 &#60;?php } ?&#62;</code></pre>
<p>P.S. You can also comment out or delete all five of the lines (16 to 20), since they are simply there to create the link "Continue".</p>
<p>To remove the link from the images you need to go to the end of the file to line 46, where you should have code like this:<br />
<pre><code>46 &#60;?php  if ($data[ &#039;custom_link&#039; ]) { ?&#62;
47 &#60;a href=&#34;&#60;?php echo $data[ &#039;custom_link&#039; ]; ?&#62;&#34;&#62;&#60;?php the_post_thumbnail(&#039;dual&#039;); ?&#62;&#60;/a&#62;
48 &#60;?php } else { ?&#62;
49 &#60;a href=&#34;&#60;?php the_permalink() ?&#62;&#34;&#62;&#60;?php the_post_thumbnail(&#039;dual&#039;); ?&#62;&#60;/a&#62;
50 &#60;?php } ?&#62;</code></pre>
<p>And you need to edit that so that the picture is still there, but it has no link. So we need to comment out the <code>&#60;a href=&#34;&#60;?php echo $data[ &#039;custom_link&#039; ]; ?&#62;&#34;&#62;</code> part in Line 47 and Line 49, like this:<br />
<pre><code>46 &#60;?php  if ($data[ &#039;custom_link&#039; ]) { ?&#62;
47 &#60;!--&#60;a href=&#34;&#60;?php echo $data[ &#039;custom_link&#039; ]; ?&#62;&#34;&#62;--&#62;&#60;?php the_post_thumbnail(&#039;dual&#039;); ?&#62;&#60;/a&#62;
48 &#60;?php } else { ?&#62;
49 &#60;!--&#60;a href=&#34;&#60;?php the_permalink() ?&#62;&#34;&#62;--&#62;&#60;?php the_post_thumbnail(&#039;dual&#039;); ?&#62;&#60;/a&#62;
50 &#60;?php } ?&#62;</code></pre>
<p>P.S. If you want to be "clean and valid" try also commenting out the <code>&#60;/a&#62;</code> closing tags on line 47 and 49 since we commented out the opening part of the <code>&#60;a&#62;</code> tag.</p>
<p>Just remember to save a backup, since you could mess up the theme if you do something wrong. That's why at least I suggest commenting, not deleting the stuff already in there.
</p></description>
		</item>
		<item>
			<title>mrdamontana on "Removing &quot;Continue&quot; and posting link from Dual Slider"</title>
			<link>http://www.themolitor.com/forums/topic/removing-continue-and-posting-link-from-dual-slider#post-9352</link>
			<pubDate>Wed, 25 Apr 2012 07:48:23 +0000</pubDate>
			<dc:creator>mrdamontana</dc:creator>
			<guid isPermaLink="false">9352@http://www.themolitor.com/forums/</guid>
			<description><p>Thanks escotth. I still can't remove the link from the images, I tried setting the link to # but it's still working
</p></description>
		</item>
		<item>
			<title>escotth on "Removing &quot;Continue&quot; and posting link from Dual Slider"</title>
			<link>http://www.themolitor.com/forums/topic/removing-continue-and-posting-link-from-dual-slider#post-9114</link>
			<pubDate>Thu, 19 Apr 2012 09:07:43 +0000</pubDate>
			<dc:creator>escotth</dc:creator>
			<guid isPermaLink="false">9114@http://www.themolitor.com/forums/</guid>
			<description><p>All:</p>
<p>To all who are interested, I wanted to set up the dual slider to display a caption for each picture, but I didn't want it to link to a post.  After looking at the code (I am a coding newbie) and reading the posts here, I figured out how to do it.</p>
<p>I created a posting for each picture in a "Slider Posts" Category.  For each post I selected the image I wanted to display as the Featured Image for the post.  I then set the slider Custom Link to "#".</p>
<p>Next I edited lines 17 and 19 of dual-slider.php to replace the string "Continue &#187;" with " ".  This got rid of the posting link and the word "Continue" from the slider description text.</p>
<p>Hope this helps some of you.</p>
<p>Scott
</p></description>
		</item>

	</channel>
</rss>
