<?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 - Tag: portfolio page - Recent Posts</title>
		<link>http://www.kriesi.at/support/tags/portfolio-page</link>
		<description>Support Forum - Tag: portfolio page - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Thu, 23 May 2013 22:15:18 +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/tags/portfolio-page" rel="self" type="application/rss+xml" />

		<item>
			<title>Nick on "Removing Meta Information from Portfolio Page"</title>
			<link>http://www.kriesi.at/support/topic/removing-meta-information-from-portfolio-page#post-87685</link>
			<pubDate>Tue, 11 Dec 2012 21:11:20 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">87685@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;HI,&#60;/p&#62;
&#60;p&#62;Here is another good resource &#60;a href=&#34;http://www.winmerge.org&#34; rel=&#34;nofollow&#34;&#62;http://www.winmerge.org&#60;/a&#62; . You can compare any two files or compare all files in 2 different directories and subdirectories side by side. So you can compare your current theme to an update or your current theme to a modified theme and instantly see every single change side by side. I haven't used it for merging, but for comparison its invaluable.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Removing Meta Information from Portfolio Page"</title>
			<link>http://www.kriesi.at/support/topic/removing-meta-information-from-portfolio-page#post-87499</link>
			<pubDate>Mon, 10 Dec 2012 21:31:07 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">87499@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Glad Nick was able to help Stephen :)&#60;/p&#62;
&#60;p&#62;Notepad++ is a big favorite of mine as well!&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>hutzelm on "Removing Meta Information from Portfolio Page"</title>
			<link>http://www.kriesi.at/support/topic/removing-meta-information-from-portfolio-page#post-87472</link>
			<pubDate>Mon, 10 Dec 2012 19:37:29 +0000</pubDate>
			<dc:creator>hutzelm</dc:creator>
			<guid isPermaLink="false">87472@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey Nick, &#60;/p&#62;
&#60;p&#62;Thanks for that. I was able to edit the Titles based on the code you inputted here. But most of all, thanks for pointing me to Notepad ++! What a great resource. I was able to make a number of edits &#38;amp; changes because of it.&#60;/p&#62;
&#60;p&#62;Thanks again,&#60;/p&#62;
&#60;p&#62;Stephen
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Removing Meta Information from Portfolio Page"</title>
			<link>http://www.kriesi.at/support/topic/removing-meta-information-from-portfolio-page#post-86685</link>
			<pubDate>Thu, 06 Dec 2012 02:43:41 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">86685@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Best way to take care of thing like that, is to download Notepad++ ( &#60;a href=&#34;http://notepad-plus-plus.org/download/v6.2.2.html&#34; rel=&#34;nofollow&#34;&#62;http://notepad-plus-plus.org/download/v6.2.2.html&#60;/a&#62; ) and unzip the theme somewhere on  your local system, and then just search with Notepadd++ the entire directory and any files that have ''Related Entries' will be displayed. (that's what I do).&#60;/p&#62;
&#60;p&#62;Look for the line 67 of related-posts.php in the /includes/ folder which looks like&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$output .= &#38;quot;&#38;lt;h5 class=&#38;#39;related_title&#38;#39;&#38;gt;&#38;quot;.__(&#38;#39;Related Entries&#38;#39;, &#38;#39;avia_framework&#38;#39;).&#38;quot;&#38;lt;/h5&#38;gt;&#38;quot;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;delete only that line, and in its place paste the code below&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;if( $is_portfolio)
{
         $output .= &#38;quot;&#38;lt;h5 class=&#38;#39;related_title&#38;#39;&#38;gt;&#38;quot;.__(&#38;#39;Related Portfolio&#38;#39;, &#38;#39;avia_framework&#38;#39;).&#38;quot;&#38;lt;/h5&#38;gt;&#38;quot;;
} else {
         $output .= &#38;quot;&#38;lt;h5 class=&#38;#39;related_title&#38;#39;&#38;gt;&#38;quot;.__(&#38;#39;Related Entries&#38;#39;, &#38;#39;avia_framework&#38;#39;).&#38;quot;&#38;lt;/h5&#38;gt;&#38;quot;;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You should probably make a backup of that entire file first in case there is a problem.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>hutzelm on "Removing Meta Information from Portfolio Page"</title>
			<link>http://www.kriesi.at/support/topic/removing-meta-information-from-portfolio-page#post-86645</link>
			<pubDate>Wed, 05 Dec 2012 16:42:43 +0000</pubDate>
			<dc:creator>hutzelm</dc:creator>
			<guid isPermaLink="false">86645@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey Nick,&#60;/p&#62;
&#60;p&#62;Thanks for this CSS addition. It worked well. However, I need to change the text from &#34;Related Entries&#34; to something along the lines of &#34;Related Brands/Other Brands/etc.&#34; &#60;/p&#62;
&#60;p&#62;I looked into the &#34;related-posts.php&#34; file and I changed the text there, but it also changed the text for related blog posts.&#60;/p&#62;
&#60;p&#62;Could you tell me how to only change the text for my portfolio items? Perhaps there is a CSS addition?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Removing Meta Information from Portfolio Page"</title>
			<link>http://www.kriesi.at/support/topic/removing-meta-information-from-portfolio-page#post-86587</link>
			<pubDate>Wed, 05 Dec 2012 08:32:27 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">86587@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Try this in your custom.css or Quick css&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.post-meta-infos {
display: none;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>hutzelm on "Removing Meta Information from Portfolio Page"</title>
			<link>http://www.kriesi.at/support/topic/removing-meta-information-from-portfolio-page#post-86467</link>
			<pubDate>Tue, 04 Dec 2012 17:00:13 +0000</pubDate>
			<dc:creator>hutzelm</dc:creator>
			<guid isPermaLink="false">86467@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;I need to remove some this from the portfolio page(s):&#60;/p&#62;
&#60;p&#62;-the Like/Tweets Count &#38;amp; What it was posted under&#60;/p&#62;
&#60;p&#62;---&#60;/p&#62;
&#60;p&#62;I'm looking in the loop-portfolio-single.php file and I believe I see where the meta information is, but I'm not very comfortable with code and am unsure of what exactly I should remove (without ruining other elements of the pages).&#60;/p&#62;
&#60;p&#62;Could you help me with what exact part of the code I should remove?&#60;/p&#62;
&#60;p&#62;***&#60;/p&#62;
&#60;p&#62;Also, I would like to change the &#34;(previous entry)&#34; (above the portfolio item) to different text. Where can I find this in the code?&#60;br /&#62;
(See &#60;a href=&#34;http://hutzelmedia.com/&#34; rel=&#34;nofollow&#34;&#62;http://hutzelmedia.com/&#60;/a&#62; )&#60;br /&#62;
Thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Center the images and text on Portfolio Pages"</title>
			<link>http://www.kriesi.at/support/topic/center-the-images-and-text-on-portfolio-pages#post-67853</link>
			<pubDate>Fri, 27 Jul 2012 01:39:34 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">67853@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;Glad we could help. &#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jjgarcia03 on "Center the images and text on Portfolio Pages"</title>
			<link>http://www.kriesi.at/support/topic/center-the-images-and-text-on-portfolio-pages#post-67839</link>
			<pubDate>Fri, 27 Jul 2012 00:20:00 +0000</pubDate>
			<dc:creator>jjgarcia03</dc:creator>
			<guid isPermaLink="false">67839@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Perfect, thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Center the images and text on Portfolio Pages"</title>
			<link>http://www.kriesi.at/support/topic/center-the-images-and-text-on-portfolio-pages#post-67717</link>
			<pubDate>Thu, 26 Jul 2012 07:27:35 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">67717@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi jjgarcia03,&#60;/p&#62;
&#60;p&#62;Try to add this code:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.more-link {
   left: 50% !important;
   margin-left: -36px !important;
}

#main .portfolio_entry .box img {
   left: 50% !important;
   margin-left: -50px !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>jjgarcia03 on "Center the images and text on Portfolio Pages"</title>
			<link>http://www.kriesi.at/support/topic/center-the-images-and-text-on-portfolio-pages#post-67660</link>
			<pubDate>Wed, 25 Jul 2012 23:20:39 +0000</pubDate>
			<dc:creator>jjgarcia03</dc:creator>
			<guid isPermaLink="false">67660@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Close, but not quite there.  The Preview image and the &#34;Read More&#34; text stayed left aligned.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Center the images and text on Portfolio Pages"</title>
			<link>http://www.kriesi.at/support/topic/center-the-images-and-text-on-portfolio-pages#post-67525</link>
			<pubDate>Wed, 25 Jul 2012 07:04:00 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">67525@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi! &#60;/p&#62;
&#60;p&#62; Try to add following code to style.css:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;#main .portfolio_entry .box img {
    display: block;
    margin: auto;
    text-align: center;
}

#main .portfolio_entry .box h3 a, #main .portfolio_entry .box h3,
#main .portfolio_entry .box p, #main .portfolio_entry .box{
    text-align: center;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62; Best regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jjgarcia03 on "Center the images and text on Portfolio Pages"</title>
			<link>http://www.kriesi.at/support/topic/center-the-images-and-text-on-portfolio-pages#post-67288</link>
			<pubDate>Tue, 24 Jul 2012 02:04:31 +0000</pubDate>
			<dc:creator>jjgarcia03</dc:creator>
			<guid isPermaLink="false">67288@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I'd like to center align the images and the text on my portfolio pages.  here's an example.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://indiewrecked.com/design-identity/&#34; rel=&#34;nofollow&#34;&#62;http://indiewrecked.com/design-identity/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Portfolio/Product Page &#34;recent"</title>
			<link>http://www.kriesi.at/support/topic/portfolioproduct-page-recent#post-45413</link>
			<pubDate>Fri, 09 Mar 2012 17:09:47 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">45413@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi emiahc,&#60;/p&#62;
&#60;p&#62;The related entries will show up automatically based on the individual category. Unfortunately I'm not sure how this well carry over to the use of WooCommerce as the theme doesn't have built in support for the plugin.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>emiahc on "Portfolio/Product Page &#34;recent"</title>
			<link>http://www.kriesi.at/support/topic/portfolioproduct-page-recent#post-45303</link>
			<pubDate>Fri, 09 Mar 2012 04:55:38 +0000</pubDate>
			<dc:creator>emiahc</dc:creator>
			<guid isPermaLink="false">45303@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi, &#60;/p&#62;
&#60;p&#62;I just got the &#34;Angular&#34; theme.  I saw on the demo that the portfolio pages have &#34;related entries&#34; below.  how can i implement that on my portfolio pages?&#60;/p&#62;
&#60;p&#62;I will be adding woocommerce, how will i be able to implement that on my &#34;product pages&#34; as well?  Same process?&#60;/p&#62;
&#60;p&#62;thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Asiertxu on "Double Menus"</title>
			<link>http://www.kriesi.at/support/topic/double-menus#post-42345</link>
			<pubDate>Sat, 18 Feb 2012 13:10:01 +0000</pubDate>
			<dc:creator>Asiertxu</dc:creator>
			<guid isPermaLink="false">42345@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Dude&#60;/p&#62;
&#60;p&#62;Thanks for your help. However that didn't seem to work. So I uninstalled the theme and reinstalled it from scratch. Then imported dummy data to help me populate it. Now on top of the double menus I also get the submenus of the Template Files page as main menus on ALL pages, plus the double menus that I'm removing.&#60;br /&#62;
How can I just have my homepage just like the one you have on &#60;a href=&#34;http://www.kriesi.at/themedemo/?theme=angular?&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/themedemo/?theme=angular?&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks in advance.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.zorrrrro.com&#34; rel=&#34;nofollow&#34;&#62;http://www.zorrrrro.com&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ld406 on "Double Menus"</title>
			<link>http://www.kriesi.at/support/topic/double-menus#post-42215</link>
			<pubDate>Fri, 17 Feb 2012 15:05:07 +0000</pubDate>
			<dc:creator>ld406</dc:creator>
			<guid isPermaLink="false">42215@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I have the same problem, every time i import dummy data,  I see double menus appearing on my main navigation.&#60;/p&#62;
&#60;p&#62;You say Go to Appearance &#38;gt; Menus and make sure that the menu is assigned to a theme location (option on the left side).&#60;br /&#62;
What do you mean by assigned the menu to a theme location ?&#60;/p&#62;
&#60;p&#62;I can see the option nowhere on the left side.&#60;/p&#62;
&#60;p&#62;thanks for your help
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Double Menus"</title>
			<link>http://www.kriesi.at/support/topic/double-menus#post-42174</link>
			<pubDate>Fri, 17 Feb 2012 10:48:10 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">42174@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
1) Maybe you need to assign the menu location. Go to Appearance &#38;gt; Menus and make sure that the menu is assigned to a theme location (option on the left side).&#60;/p&#62;
&#60;p&#62;2) You can create your own portfolio page:&#60;/p&#62;
&#60;p&#62;a) Add a new page (Pages &#38;gt; Add New) - you can use any page title, slug, etc.&#60;/p&#62;
&#60;p&#62;b) Create one or more portfolio items (Portfolio Items &#38;gt; Add New) and assign them to one or more portfolio categories.&#60;/p&#62;
&#60;p&#62;c) Go to Angular &#38;gt; Theme Options &#38;gt; Portfolio and select the page as portfolio page and select one or more portfolio categories which should be displayed on this portfolio page. Then save the settings. You can create more portfolio pages by clicking on the green plus symbol in the bottom right corner.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Asiertxu on "Double Menus"</title>
			<link>http://www.kriesi.at/support/topic/double-menus#post-42154</link>
			<pubDate>Fri, 17 Feb 2012 09:32:24 +0000</pubDate>
			<dc:creator>Asiertxu</dc:creator>
			<guid isPermaLink="false">42154@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi&#60;/p&#62;
&#60;p&#62;I'm totally new to WordPress and I've chosen Angular as my theme of choice. However as I'm trying to populate it, and I've chosen using dummy data to help me around I see double menus appearing on my main navigation; Blog - Blog - Template Files - Template files - Contact - Contact. Also my portfolio page has vanished.&#60;/p&#62;
&#60;p&#62;I've tried to reset all content to factory settings several times, but still get the double menus and no Portfolio page.&#60;/p&#62;
&#60;p&#62;Any help will be much appreciated.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.zorrrrro.com&#34; rel=&#34;nofollow&#34;&#62;http://www.zorrrrro.com&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Beard on "Portfolio Overview Page Title Area Sizing"</title>
			<link>http://www.kriesi.at/support/topic/portfolio-overview-page-title-area-sizing#post-41265</link>
			<pubDate>Sun, 12 Feb 2012 01:31:42 +0000</pubDate>
			<dc:creator>Chris Beard</dc:creator>
			<guid isPermaLink="false">41265@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey! &#60;/p&#62;
&#60;p&#62; Sorry to not have responded earlier, good to see you've found the solution though! Thanks for sharing.&#60;/p&#62;
&#60;p&#62; Regards,&#60;br /&#62;
Chris
&#60;/p&#62;</description>
		</item>
		<item>
			<title>stawnster on "Portfolio Overview Page Title Area Sizing"</title>
			<link>http://www.kriesi.at/support/topic/portfolio-overview-page-title-area-sizing#post-40949</link>
			<pubDate>Thu, 09 Feb 2012 15:30:07 +0000</pubDate>
			<dc:creator>stawnster</dc:creator>
			<guid isPermaLink="false">40949@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Actually, this is an improved solution. It holds layout when page is resized to iPad/iPhone etc.&#60;/p&#62;
&#60;p&#62;#top .portfolio-title {&#60;br /&#62;
padding: 15px 30px;&#60;br /&#62;
min-height: 37px&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;.title-span { top: 22px }&#60;/p&#62;
&#60;p&#62;h1.post-title a {&#60;br /&#62;
overflow: hidden;&#60;br /&#62;
height: 37px;&#60;br /&#62;
display: block;&#60;br /&#62;
}
&#60;/p&#62;</description>
		</item>
		<item>
			<title>stawnster on "Portfolio Overview Page Title Area Sizing"</title>
			<link>http://www.kriesi.at/support/topic/portfolio-overview-page-title-area-sizing#post-40793</link>
			<pubDate>Thu, 09 Feb 2012 00:54:09 +0000</pubDate>
			<dc:creator>stawnster</dc:creator>
			<guid isPermaLink="false">40793@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Here is my solution, for anyone interested! Second part moves the pink hash up to the first line as well.&#60;/p&#62;
&#60;p&#62;#top .portfolio-title {&#60;br /&#62;
padding: 15px 30px;&#60;br /&#62;
min-height: 37px&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;.title-span { top: 22px }
&#60;/p&#62;</description>
		</item>
		<item>
			<title>stawnster on "Portfolio Overview Page Title Area Sizing"</title>
			<link>http://www.kriesi.at/support/topic/portfolio-overview-page-title-area-sizing#post-40086</link>
			<pubDate>Sat, 04 Feb 2012 03:53:08 +0000</pubDate>
			<dc:creator>stawnster</dc:creator>
			<guid isPermaLink="false">40086@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;The title area automatically gets bigger when portfolio items have longer titles.. so some of the portfolio items with short titles are different than others with longer titles. Can I adjust it to always be the same size, to allow for either short or long titles in a slightly larger title area? See link: &#60;a href=&#34;http://www.stawnkaufman.com/nina/featured/&#34; rel=&#34;nofollow&#34;&#62;http://www.stawnkaufman.com/nina/featured/&#60;/a&#62; &#60;/p&#62;
&#60;p&#62;Thank you!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Create New sidebar for a portfolio page"</title>
			<link>http://www.kriesi.at/support/topic/create-new-sidebar-for-a-portfolio-page#post-27298</link>
			<pubDate>Mon, 19 Sep 2011 05:29:49 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">27298@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Glad that you found a solution :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Spacejunk on "Create New sidebar for a portfolio page"</title>
			<link>http://www.kriesi.at/support/topic/create-new-sidebar-for-a-portfolio-page#post-27285</link>
			<pubDate>Sun, 18 Sep 2011 23:18:20 +0000</pubDate>
			<dc:creator>Spacejunk</dc:creator>
			<guid isPermaLink="false">27285@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Update: &#60;/p&#62;
&#60;p&#62;I used the plugin &#34;custom sidebars&#34; which seems to solve the problem. Thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Spacejunk on "Create New sidebar for a portfolio page"</title>
			<link>http://www.kriesi.at/support/topic/create-new-sidebar-for-a-portfolio-page#post-27283</link>
			<pubDate>Sun, 18 Sep 2011 22:58:03 +0000</pubDate>
			<dc:creator>Spacejunk</dc:creator>
			<guid isPermaLink="false">27283@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;My site is &#60;a href=&#34;http://jmannion.com&#34; rel=&#34;nofollow&#34;&#62;http://jmannion.com&#60;/a&#62;.&#60;/p&#62;
&#60;p&#62;How do I create a new sidebar for a portfolio page? This page, &#60;a href=&#34;http://jmannion.com/?portfolio=refrigerated-foods&#34; rel=&#34;nofollow&#34;&#62;http://jmannion.com/?portfolio=refrigerated-foods&#60;/a&#62;, is a portfolio page sorted by a category. I set it to display a left sidebar and it displays the &#34;displayed everywhere (left)&#34; one. Is there a way, or a recommended plugin to use that changes this to a different or new sidebar? Thanks in advance!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Get an error message when I click on &#34;Read More&#34;"</title>
			<link>http://www.kriesi.at/support/topic/get-an-error-message-when-i-click-on-read-more#post-17979</link>
			<pubDate>Thu, 28 Apr 2011 13:48:17 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">17979@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Glad that I could help you. The permalink structure wasn't right but it's fixed now :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>celialuna00 on "Get an error message when I click on &#34;Read More&#34;"</title>
			<link>http://www.kriesi.at/support/topic/get-an-error-message-when-i-click-on-read-more#post-17934</link>
			<pubDate>Wed, 27 Apr 2011 15:38:22 +0000</pubDate>
			<dc:creator>celialuna00</dc:creator>
			<guid isPermaLink="false">17934@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;hmmm did I do something wrong? &#60;/p&#62;
&#60;p&#62;Thank you so much for fixing it! You're the best!&#60;/p&#62;
&#60;p&#62;=)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Get an error message when I click on &#34;Read More&#34;"</title>
			<link>http://www.kriesi.at/support/topic/get-an-error-message-when-i-click-on-read-more#post-17931</link>
			<pubDate>Wed, 27 Apr 2011 15:23:14 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">17931@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
I fixed the problem - it was related to your (very strange) permalink structure.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>celialuna00 on "Get an error message when I click on &#34;Read More&#34;"</title>
			<link>http://www.kriesi.at/support/topic/get-an-error-message-when-i-click-on-read-more#post-17929</link>
			<pubDate>Wed, 27 Apr 2011 15:07:28 +0000</pubDate>
			<dc:creator>celialuna00</dc:creator>
			<guid isPermaLink="false">17929@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Just sent it! =)
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
