<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<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>Support Forum - Topic: Avisio Portfolio Title Links</title>
		<link>http://www.kriesi.at/support/topic/avisio-portfolio-title-links</link>
		<description>Support Forum - Topic: Avisio Portfolio Title Links</description>
		<language>en-US</language>
		<pubDate>Wed, 22 May 2013 06:25:12 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.kriesi.at/support/search.php</link>
		</textInput>
		<atom:link href="http://www.kriesi.at/support/rss/topic/avisio-portfolio-title-links" rel="self" type="application/rss+xml" />

		<item>
			<title>Dude on "Avisio Portfolio Title Links"</title>
			<link>http://www.kriesi.at/support/topic/avisio-portfolio-title-links#post-26712</link>
			<pubDate>Sun, 11 Sep 2011 16:42:14 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">26712@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Glad that I could help you :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Irtellidesign on "Avisio Portfolio Title Links"</title>
			<link>http://www.kriesi.at/support/topic/avisio-portfolio-title-links#post-26700</link>
			<pubDate>Sun, 11 Sep 2011 12:01:59 +0000</pubDate>
			<dc:creator>Irtellidesign</dc:creator>
			<guid isPermaLink="false">26700@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Absolutely perfect. Many thanks for the excellent support as usual. :-)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Avisio Portfolio Title Links"</title>
			<link>http://www.kriesi.at/support/topic/avisio-portfolio-title-links#post-26650</link>
			<pubDate>Sat, 10 Sep 2011 14:31:08 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">26650@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;You can try to use following code instead:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;if (get_post_meta($post-&#38;gt;ID, &#38;#39;nolink&#38;#39;, true)){
					echo &#38;quot;&#38;lt;h3 class=&#38;#39;name_sort&#38;#39;&#38;gt;&#38;quot;.get_the_title().&#38;quot;&#38;lt;/h3&#38;gt;&#38;quot;;
}else{
					echo &#38;quot;&#38;lt;h3 class=&#38;#39;name_sort&#38;#39;&#38;gt;&#38;lt;a href=&#38;#39;&#38;quot;.get_permalink().&#38;quot;&#38;#39; title=&#38;#39;&#38;quot;.get_the_title().&#38;quot;&#38;#39;&#38;gt;&#38;quot;.get_the_title().&#38;quot;&#38;lt;/a&#38;gt;&#38;lt;/h3&#38;gt;&#38;quot;;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and set a 'nolink' value for portfolio entries without a title link.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Irtellidesign on "Avisio Portfolio Title Links"</title>
			<link>http://www.kriesi.at/support/topic/avisio-portfolio-title-links#post-26618</link>
			<pubDate>Fri, 09 Sep 2011 09:42:33 +0000</pubDate>
			<dc:creator>Irtellidesign</dc:creator>
			<guid isPermaLink="false">26618@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;You're correct - as the code takes away the title altogether it is ignored at sort stage; it doesn't exactly break the whole thing, but having no title at all takes away important information.&#60;/p&#62;
&#60;p&#62;However, I was looking to still have the title but break the link. If it's not possible to have a title with no link, is there a way to set a custom value where the title links back to the portfolio page, effectively disabling it?&#60;/p&#62;
&#60;p&#62;Thanks.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Avisio Portfolio Title Links"</title>
			<link>http://www.kriesi.at/support/topic/avisio-portfolio-title-links#post-26584</link>
			<pubDate>Fri, 09 Sep 2011 05:19:10 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">26584@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
basically you can use post meta to do this. In template_portfolio.php replace:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;echo &#38;quot;&#38;lt;h3 class=&#38;#39;name_sort&#38;#39;&#38;gt;&#38;lt;a href=&#38;#39;&#38;quot;.get_permalink().&#38;quot;&#38;#39; title=&#38;#39;&#38;quot;.get_the_title().&#38;quot;&#38;#39;&#38;gt;&#38;quot;.get_the_title().&#38;quot;&#38;lt;/a&#38;gt;&#38;lt;/h3&#38;gt;&#38;quot;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;with:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;if (! get_post_meta($post-&#38;gt;ID, &#38;#39;notitle&#38;#39;, true)){
					echo &#38;quot;&#38;lt;h3 class=&#38;#39;name_sort&#38;#39;&#38;gt;&#38;lt;a href=&#38;#39;&#38;quot;.get_permalink().&#38;quot;&#38;#39; title=&#38;#39;&#38;quot;.get_the_title().&#38;quot;&#38;#39;&#38;gt;&#38;quot;.get_the_title().&#38;quot;&#38;lt;/a&#38;gt;&#38;lt;/h3&#38;gt;&#38;quot;;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and set a &#34;notitle&#34; custom value for items without headline. This modification may break the sortable portfolio feature.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Irtellidesign on "Avisio Portfolio Title Links"</title>
			<link>http://www.kriesi.at/support/topic/avisio-portfolio-title-links#post-26551</link>
			<pubDate>Thu, 08 Sep 2011 09:59:12 +0000</pubDate>
			<dc:creator>Irtellidesign</dc:creator>
			<guid isPermaLink="false">26551@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi there,&#60;/p&#62;
&#60;p&#62;Is there any way for me to be able to selectively remove the default links to the titles in the portfolio section? For example, if you go to &#60;a href=&#34;http://www.bht-design.org.uk/portfolio&#34; rel=&#34;nofollow&#34;&#62;http://www.bht-design.org.uk/portfolio&#60;/a&#62; I need to unlink the 'Threshold Logo' header, as it leads to an empty post. I just need that entry to have the picture linking to the lightbox as it does now.&#60;/p&#62;
&#60;p&#62;Many thanks.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
