<?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 - User Favorites: OttoRobba</title>
		<link><a href='http://www.kriesi.at/support/profile/ottorobba'>ottorobba</a></link>
		<description>Support Forum - User Favorites: OttoRobba</description>
		<language>en-US</language>
		<pubDate>Thu, 23 May 2013 22:42:32 +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/profile/" rel="self" type="application/rss+xml" />

		<item>
			<title>Nick on "View portfolio entries based on tags"</title>
			<link>http://www.kriesi.at/support/topic/view-portfolio-entries-based-on-tags#post-76611</link>
			<pubDate>Wed, 19 Sep 2012 18:56:55 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">76611@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Use this plugin to attach the image to the new taxonomy, I think it still works, if not there are instructions, not that difficult. &#60;a href=&#34;http://wordpress.org/extend/plugins/taxonomy-images/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/taxonomy-images/&#60;/a&#62; Good luck!&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>OttoRobba on "View portfolio entries based on tags"</title>
			<link>http://www.kriesi.at/support/topic/view-portfolio-entries-based-on-tags#post-76589</link>
			<pubDate>Wed, 19 Sep 2012 16:51:57 +0000</pubDate>
			<dc:creator>OttoRobba</dc:creator>
			<guid isPermaLink="false">76589@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Quick question, when I click one of these new, shiny, portfolio-only tags, is there a way to make it show thumbnails? Right now I get the post content instead of a thumbnail view like when you click a portfolio category. Thanks :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>OttoRobba on "View portfolio entries based on tags"</title>
			<link>http://www.kriesi.at/support/topic/view-portfolio-entries-based-on-tags#post-76572</link>
			<pubDate>Wed, 19 Sep 2012 15:44:32 +0000</pubDate>
			<dc:creator>OttoRobba</dc:creator>
			<guid isPermaLink="false">76572@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;That is as close as it gets to what I need, thank you very much Nick, I'm gonna work with it. :)&#60;/p&#62;
&#60;p&#62;Best regards,&#60;/p&#62;
&#60;p&#62;Otto
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "View portfolio entries based on tags"</title>
			<link>http://www.kriesi.at/support/topic/view-portfolio-entries-based-on-tags#post-76545</link>
			<pubDate>Wed, 19 Sep 2012 06:22:08 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">76545@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;To see something you need to make a blog post using the same tag. Portfolio items have their own categories. Tags aren't unique to portfolio items but shared with the blog posts.&#60;/p&#62;
&#60;p&#62;A cool use for the tags would be linking them to posts, so if u put a tag 'waffle iron' on a blog post, you can have a waffle iron portfolio with that tag linking to all waffle iron posts so they are interlinked. Good SEO value! &#60;/p&#62;
&#60;p&#62;You need to make a completely separate taxonomy calling it something like Tags2 if you want to have tags only shared between portfolio items.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// registration code for portfolio-tags taxonomy
									function register_portfolio_tags_tax() {
										$labels = array(
											&#38;#39;name&#38;#39; 					=&#38;gt; _x( &#38;#39;Portfolio Tags&#38;#39;, &#38;#39;taxonomy general name&#38;#39; ),
											&#38;#39;singular_name&#38;#39; 		=&#38;gt; _x( &#38;#39;Portfolio Tag&#38;#39;, &#38;#39;taxonomy singular name&#38;#39; ),
											&#38;#39;add_new&#38;#39; 				=&#38;gt; _x( &#38;#39;Add New Portfolio Tag&#38;#39;, &#38;#39;Portfolio Tag&#38;#39;),
											&#38;#39;add_new_item&#38;#39; 			=&#38;gt; __( &#38;#39;Add New Portfolio Tag&#38;#39; ),
											&#38;#39;edit_item&#38;#39; 			=&#38;gt; __( &#38;#39;Edit Portfolio Tag&#38;#39; ),
											&#38;#39;new_item&#38;#39; 				=&#38;gt; __( &#38;#39;New Portfolio Tag&#38;#39; ),
											&#38;#39;view_item&#38;#39; 			=&#38;gt; __( &#38;#39;View Portfolio Tag&#38;#39; ),
											&#38;#39;search_items&#38;#39; 			=&#38;gt; __( &#38;#39;Search Portfolio Tags&#38;#39; ),
											&#38;#39;not_found&#38;#39; 			=&#38;gt; __( &#38;#39;No Portfolio Tag found&#38;#39; ),
											&#38;#39;not_found_in_trash&#38;#39; 	=&#38;gt; __( &#38;#39;No Portfolio Tag found in Trash&#38;#39; ),
										);

										$pages = array(&#38;#39;portfolio&#38;#39;);

										$args = array(
											&#38;#39;labels&#38;#39; 			=&#38;gt; $labels,
											&#38;#39;singular_label&#38;#39; 	=&#38;gt; __(&#38;#39;Portfolio Tag&#38;#39;),
											&#38;#39;public&#38;#39; 			=&#38;gt; true,
											&#38;#39;show_ui&#38;#39; 			=&#38;gt; true,
											&#38;#39;hierarchical&#38;#39; 		=&#38;gt; false,
											&#38;#39;show_tagcloud&#38;#39; 	=&#38;gt; true,
											&#38;#39;show_in_nav_menus&#38;#39; =&#38;gt; true,
											&#38;#39;rewrite&#38;#39; 			=&#38;gt; array(&#38;#39;slug&#38;#39; =&#38;gt; &#38;#39;portfolio-tag&#38;#39;, &#38;#39;with_front&#38;#39; =&#38;gt; false ),
										 );
										register_taxonomy(&#38;#39;portfolio-tags&#38;#39;, $pages, $args);
									}
									add_action(&#38;#39;init&#38;#39;, &#38;#39;register_portfolio_tags_tax&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You can try something like this. Drop it please into your functions.php, and see if you have a new taxonomy in portfolio&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>OttoRobba on "View portfolio entries based on tags"</title>
			<link>http://www.kriesi.at/support/topic/view-portfolio-entries-based-on-tags#post-76356</link>
			<pubDate>Tue, 18 Sep 2012 02:44:43 +0000</pubDate>
			<dc:creator>OttoRobba</dc:creator>
			<guid isPermaLink="false">76356@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Sounds good, thanks Devin. :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "View portfolio entries based on tags"</title>
			<link>http://www.kriesi.at/support/topic/view-portfolio-entries-based-on-tags#post-76234</link>
			<pubDate>Mon, 17 Sep 2012 15:05:05 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">76234@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey Otto,&#60;/p&#62;
&#60;p&#62;I'm not sure what else could be going on. I've tagged Kriesi on the topic so that the next time he is going through support topics he can take a look and perhaps shed some additional light on the issue.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>OttoRobba on "View portfolio entries based on tags"</title>
			<link>http://www.kriesi.at/support/topic/view-portfolio-entries-based-on-tags#post-76168</link>
			<pubDate>Mon, 17 Sep 2012 03:07:55 +0000</pubDate>
			<dc:creator>OttoRobba</dc:creator>
			<guid isPermaLink="false">76168@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Any news on what the issue might be?&#60;/p&#62;
&#60;p&#62;Weburl if other moderators want to take a look: &#60;a href=&#34;http://www.akademeia.org&#34; rel=&#34;nofollow&#34;&#62;http://www.akademeia.org&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>OttoRobba on "View portfolio entries based on tags"</title>
			<link>http://www.kriesi.at/support/topic/view-portfolio-entries-based-on-tags#post-75999</link>
			<pubDate>Fri, 14 Sep 2012 20:29:37 +0000</pubDate>
			<dc:creator>OttoRobba</dc:creator>
			<guid isPermaLink="false">75999@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Changed it to lessons after doing all the test with regular portfolio nomenclature. Haven't changed any arrays or anything like that, only the echo text, as you saw. I can revert it to vanilla Choices nomenclature but I assure you, the problem will still be there.&#60;/p&#62;
&#60;p&#62;Reverted it to entirely vanilla Choices, only modification whatsoever is to display tags, as seen on Dude's topic.&#60;br /&#62;
No plugins, nothing. Any clue? :(
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "View portfolio entries based on tags"</title>
			<link>http://www.kriesi.at/support/topic/view-portfolio-entries-based-on-tags#post-75984</link>
			<pubDate>Fri, 14 Sep 2012 18:11:31 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">75984@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Otto,&#60;/p&#62;
&#60;p&#62;Have you changed anything else in the custom post type portfolio? I see that you changed the name that appears in Wordpress to Lessons and wordpress is pretty sensitive to names when it comes to custom post types. So if you've changed anything else...it could be causing the theme to grab the incorrect loop for the archive.&#60;/p&#62;
&#60;p&#62;If you want to have a different custom post type, I would suggest just creating a new one from scratch as I really can't even say without some major digging what other conflicts there might be to modifying the portfolio post type. Its pretty ingrained in the framework at this point.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "View portfolio entries based on tags"</title>
			<link>http://www.kriesi.at/support/topic/view-portfolio-entries-based-on-tags#post-75974</link>
			<pubDate>Fri, 14 Sep 2012 17:34:18 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">75974@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Let me tag this thread again to Devin. :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>OttoRobba on "View portfolio entries based on tags"</title>
			<link>http://www.kriesi.at/support/topic/view-portfolio-entries-based-on-tags#post-75832</link>
			<pubDate>Fri, 14 Sep 2012 00:55:22 +0000</pubDate>
			<dc:creator>OttoRobba</dc:creator>
			<guid isPermaLink="false">75832@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Tried without any plugins, no dice, still says that nothing has been found. Created the Temporary Admin account and sent you the information for it in an e-mail.&#60;/p&#62;
&#60;p&#62;Thanks Devin :)&#60;/p&#62;
&#60;p&#62;--Otto
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "View portfolio entries based on tags"</title>
			<link>http://www.kriesi.at/support/topic/view-portfolio-entries-based-on-tags#post-75799</link>
			<pubDate>Thu, 13 Sep 2012 18:24:18 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">75799@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Very strange, I double checked and I did enable it for Choices specifically. The code is just a general way of adding support for tags for custom post types so it really should work without issue for any kind of custom post type.&#60;/p&#62;
&#60;p&#62;Make sure wordpress is updated and that there aren't any other plugins installed and active. Just in case something is causing a conflict with the theme.&#60;/p&#62;
&#60;p&#62;If you can also create a temporary admin account for me I'll log in and see if I can spot anything in the wordpress backend that might be causing the tags not to work properly.&#60;/p&#62;
&#60;p&#62;You can send the information to my email at DevinVinson (at) gmail.com. Make sure to include a link to this topic so that my spam filter doesn't grab it :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>OttoRobba on "View portfolio entries based on tags"</title>
			<link>http://www.kriesi.at/support/topic/view-portfolio-entries-based-on-tags#post-75486</link>
			<pubDate>Wed, 12 Sep 2012 00:00:28 +0000</pubDate>
			<dc:creator>OttoRobba</dc:creator>
			<guid isPermaLink="false">75486@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Devin,&#60;/p&#62;
&#60;p&#62;I tried what you said now, both locally and on the remote server (hosted on HGator), changed permalinks, nothing seems to work.&#60;br /&#62;
This is for tags from portfolio entries, just to be sure we are on the same page as regular blog post tags work just fine - which makes the whole thing even weirder.&#60;/p&#62;
&#60;p&#62;This is running a vanilla install of Choices - only modification was to enable the tags.&#60;/p&#62;
&#60;p&#62;EDIT: Could something be wrong with the very method of showing portfolio tags? It was originally posted as the solution for the theme coherence, link is in the first post.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "View portfolio entries based on tags"</title>
			<link>http://www.kriesi.at/support/topic/view-portfolio-entries-based-on-tags#post-75441</link>
			<pubDate>Tue, 11 Sep 2012 17:27:42 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">75441@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi OttoRobba,&#60;/p&#62;
&#60;p&#62;I'm not sure whats going on as I just went through and tested it and didn't have any issue with pulling up an archive with the tag links.&#60;/p&#62;
&#60;p&#62;My only guess is that perhaps your permalinks are not configured correctly or that there is something else causing a conflict with the proper output of it. You can try changing your permalink settings to default and try it again, if it works then you can try the troubleshooting tips from the Wordpress codex here: &#60;a href=&#34;http://codex.wordpress.org/Using_Permalinks#Fixing_Permalink_Problems&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Using_Permalinks#Fixing_Permalink_Problems&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Removing Related Entries from single Portfolio Item page"</title>
			<link>http://www.kriesi.at/support/topic/removing-related-entries-from-single-portfolio-item-page#post-75393</link>
			<pubDate>Tue, 11 Sep 2012 08:30:10 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">75393@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Cathe,&#60;/p&#62;
&#60;p&#62;Try to add this code for the pagination:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.single-portfolio .post_nav {
   margin: 30px 0;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;or&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.single-portfolio .post_nav {
   margin: 30px 0 !important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;This will give 30px top and bottom.&#60;/p&#62;
&#60;p&#62;For the portfolio title, just add this code:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.single-portfolio .portfolio-single-post-title {
   font-size: 24px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;or&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.single-portfolio .portfolio-single-post-title {
   font-size: 24px !important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Just adjust the font-size value. The default is 30px. :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>tamtamdesigns on "Removing Related Entries from single Portfolio Item page"</title>
			<link>http://www.kriesi.at/support/topic/removing-related-entries-from-single-portfolio-item-page#post-75380</link>
			<pubDate>Tue, 11 Sep 2012 07:51:05 +0000</pubDate>
			<dc:creator>tamtamdesigns</dc:creator>
			<guid isPermaLink="false">75380@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;P.S. While we're on the topic of the portfolio page, how do I decrease the size of the portfolio title? I looked through all the css and couldn't find the area to change it. Thanks, again! You've been great help!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>tamtamdesigns on "Removing Related Entries from single Portfolio Item page"</title>
			<link>http://www.kriesi.at/support/topic/removing-related-entries-from-single-portfolio-item-page#post-75376</link>
			<pubDate>Tue, 11 Sep 2012 07:42:02 +0000</pubDate>
			<dc:creator>tamtamdesigns</dc:creator>
			<guid isPermaLink="false">75376@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thank you, Ismael! It worked! However, now the portfolio pagination is off-balance. How do I adjust the padding of the pagination that is below the portfolio page? I'd like to add more padding to the bottom of it (perhaps 30 pixels) and to the top, too (30 pixels). Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Removing Related Entries from single Portfolio Item page"</title>
			<link>http://www.kriesi.at/support/topic/removing-related-entries-from-single-portfolio-item-page#post-75369</link>
			<pubDate>Tue, 11 Sep 2012 07:21:27 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">75369@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi tamtamdesigns,&#60;/p&#62;
&#60;p&#62;Try to add this code in Quick CSS or custom.css:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.single-portfolio .container &#38;gt; .hr.hr_flag, .single-portfolio .related-portfolio {
   display: none;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;or:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.single-portfolio .container &#38;gt; .hr.hr_flag, .single-portfolio .related-portfolio {
   display: none !important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Hope this helps. :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>OttoRobba on "View portfolio entries based on tags"</title>
			<link>http://www.kriesi.at/support/topic/view-portfolio-entries-based-on-tags#post-75221</link>
			<pubDate>Mon, 10 Sep 2012 16:24:04 +0000</pubDate>
			<dc:creator>OttoRobba</dc:creator>
			<guid isPermaLink="false">75221@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi there.&#60;/p&#62;
&#60;p&#62;I have modified the 'Choices' theme to show tags on portfolio entries, like Dude shows here: &#60;a href=&#34;http://www.kriesi.at/support/topic/add-tags-for-portfolio-posts&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/support/topic/add-tags-for-portfolio-posts&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;The problem, however, is that clicking any of those tags doesn't return any results.&#60;br /&#62;
I always get a 'Tag Archive: Nothing Found' page.&#60;br /&#62;
Is there a way - be it a plugin or a theme modification - to correct this behaviour?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>tamtamdesigns on "Removing Related Entries from single Portfolio Item page"</title>
			<link>http://www.kriesi.at/support/topic/removing-related-entries-from-single-portfolio-item-page#post-75085</link>
			<pubDate>Sun, 09 Sep 2012 20:29:31 +0000</pubDate>
			<dc:creator>tamtamdesigns</dc:creator>
			<guid isPermaLink="false">75085@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I'd like to remove the &#34;Related Entries&#34; section that appears below each portfolio page. How do I do this? Thank you!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Add tags for portfolio posts"</title>
			<link>http://www.kriesi.at/support/topic/add-tags-for-portfolio-posts#post-63170</link>
			<pubDate>Mon, 02 Jul 2012 09:57:16 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">63170@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi! &#60;/p&#62;
&#60;p&#62; You can add tag support to the portfolio post type - open up includes\admin\register-portfolio.php and replace:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;#39;show_in_nav_menus&#38;#39;=&#38;gt; false,&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;with:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;#39;show_in_nav_menus&#38;#39;=&#38;gt; false,
&#38;#39;taxonomies&#38;#39;=&#38;gt; array(&#38;#39;post_tag&#38;#39;),&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62; Best regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ewaterman1 on "Add tags for portfolio posts"</title>
			<link>http://www.kriesi.at/support/topic/add-tags-for-portfolio-posts#post-63093</link>
			<pubDate>Sun, 01 Jul 2012 15:17:57 +0000</pubDate>
			<dc:creator>ewaterman1</dc:creator>
			<guid isPermaLink="false">63093@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I would like to be able to create tags for portfolio posts just like I do with regular blog posts but I don't see the option available. I will be posting my podcast as a portfolio item because it will have a heavy emphasis on photography. It would be great to create those tags and have them be apart of the same tag cloud I have on my homepage. Just let me know if I'm missing where I can do this or it will be possible to add this feature at some point. Thanks!
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
