<?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: 404 errors portfolio</title>
		<link>http://www.kriesi.at/support/topic/404-errors-portfolio</link>
		<description>Support Forum - Topic: 404 errors portfolio</description>
		<language>en-US</language>
		<pubDate>Sat, 18 May 2013 13:41:45 +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/404-errors-portfolio" rel="self" type="application/rss+xml" />

		<item>
			<title>zannasf on "404 errors portfolio"</title>
			<link>http://www.kriesi.at/support/topic/404-errors-portfolio#post-7856</link>
			<pubDate>Wed, 27 Oct 2010 18:46:28 +0000</pubDate>
			<dc:creator>zannasf</dc:creator>
			<guid isPermaLink="false">7856@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi I'm having the same issue. I changed the php file using the new code, added the WP &#34;no category&#34; plug in (although I know it has no impact), flushed the permalink, rewrite page, emptied my cache, tried on different browsers...still getting 404 error. URGENT, please help.&#60;br /&#62;
&#60;a href=&#34;http://www.picturiapress.com&#34; rel=&#34;nofollow&#34;&#62;http://www.picturiapress.com&#60;/a&#62;.&#60;/p&#62;
&#60;p&#62;When I change the permalinks back to default, all the pages get page_id's, but the portfolio get's the actual page name
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "404 errors portfolio"</title>
			<link>http://www.kriesi.at/support/topic/404-errors-portfolio#post-6563</link>
			<pubDate>Wed, 13 Oct 2010 09:19:12 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">6563@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I've tested it on my test server without problems. Maybe the permalink reset didn't work. Please try it again. I don't know another way to achieve what you want because you need to rewrite the slug.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jawes on "404 errors portfolio"</title>
			<link>http://www.kriesi.at/support/topic/404-errors-portfolio#post-6540</link>
			<pubDate>Tue, 12 Oct 2010 18:12:22 +0000</pubDate>
			<dc:creator>jawes</dc:creator>
			<guid isPermaLink="false">6540@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Sorry it does not work ... the 404 errors are back again on all pages except the homepage!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "404 errors portfolio"</title>
			<link>http://www.kriesi.at/support/topic/404-errors-portfolio#post-6519</link>
			<pubDate>Tue, 12 Oct 2010 07:46:24 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">6519@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Open up /theme_options/portfolio.php and change this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$slugRule = get_option(&#38;#39;category_base&#38;#39;);
		if($slugRule == &#38;quot;&#38;quot;) $slugRule = &#38;#39;category&#38;#39;;

    	$args = array(
        	&#38;#39;labels&#38;#39; =&#38;gt; $labels,
        	&#38;#39;public&#38;#39; =&#38;gt; true,
        	&#38;#39;show_ui&#38;#39; =&#38;gt; true,
        	&#38;#39;capability_type&#38;#39; =&#38;gt; &#38;#39;post&#38;#39;,
        	&#38;#39;hierarchical&#38;#39; =&#38;gt; false,
        	&#38;#39;rewrite&#38;#39; =&#38;gt; array(&#38;#39;slug&#38;#39;=&#38;gt;$slugRule.&#38;#39;/portfolio&#38;#39;,&#38;#39;with_front&#38;#39;=&#38;gt;true),
        	&#38;#39;query_var&#38;#39; =&#38;gt; true,
        	&#38;#39;show_in_nav_menus&#38;#39;=&#38;gt; false,
        	&#38;#39;menu_position&#38;#39; =&#38;gt; 5,
        	&#38;#39;supports&#38;#39; =&#38;gt; array(&#38;#39;title&#38;#39;,&#38;#39;thumbnail&#38;#39;,&#38;#39;excerpt&#38;#39;,&#38;#39;editor&#38;#39;,&#38;#39;comments&#38;#39;)
        );&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;to this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;//$slugRule = get_option(&#38;#39;category_base&#38;#39;);
		//if($slugRule == &#38;quot;&#38;quot;) $slugRule = &#38;#39;category&#38;#39;;
		$slugRule =&#38;quot;&#38;quot;;

    	$args = array(
        	&#38;#39;labels&#38;#39; =&#38;gt; $labels,
        	&#38;#39;public&#38;#39; =&#38;gt; true,
        	&#38;#39;show_ui&#38;#39; =&#38;gt; true,
        	&#38;#39;capability_type&#38;#39; =&#38;gt; &#38;#39;post&#38;#39;,
        	&#38;#39;hierarchical&#38;#39; =&#38;gt; false,
        	&#38;#39;rewrite&#38;#39; =&#38;gt; array(&#38;#39;slug&#38;#39;=&#38;gt;$slugRule.&#38;#39;&#38;#39;,&#38;#39;with_front&#38;#39;=&#38;gt;true),
        	&#38;#39;query_var&#38;#39; =&#38;gt; true,
        	&#38;#39;show_in_nav_menus&#38;#39;=&#38;gt; false,
        	&#38;#39;menu_position&#38;#39; =&#38;gt; 5,
        	&#38;#39;supports&#38;#39; =&#38;gt; array(&#38;#39;title&#38;#39;,&#38;#39;thumbnail&#38;#39;,&#38;#39;excerpt&#38;#39;,&#38;#39;editor&#38;#39;,&#38;#39;comments&#38;#39;)
        );&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;And reset your permalinks by saving them again.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jawes on "404 errors portfolio"</title>
			<link>http://www.kriesi.at/support/topic/404-errors-portfolio#post-6486</link>
			<pubDate>Mon, 11 Oct 2010 19:21:41 +0000</pubDate>
			<dc:creator>jawes</dc:creator>
			<guid isPermaLink="false">6486@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi dude,&#60;/p&#62;
&#60;p&#62;Wel this seems to work no 404 errors!&#60;br /&#62;
Thanks for your help.&#60;br /&#62;
How can I remove portfolio out of the url.&#60;br /&#62;
&#60;a href=&#34;http://sonartc.nl/wordpress/portfolio/nlp-basiscursus-2010-harderwijk/&#34; rel=&#34;nofollow&#34;&#62;http://sonartc.nl/wordpress/portfolio/nlp-basiscursus-2010-harderwijk/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Permalinks is now set to: /%postname%/
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "404 errors portfolio"</title>
			<link>http://www.kriesi.at/support/topic/404-errors-portfolio#post-6448</link>
			<pubDate>Mon, 11 Oct 2010 06:05:55 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">6448@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Did you have a look at this thread: &#60;a href=&#34;http://www.kriesi.at/support/topic/permalink-without-kategorie&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/support/topic/permalink-without-kategorie&#60;/a&#62; ?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jawes on "404 errors portfolio"</title>
			<link>http://www.kriesi.at/support/topic/404-errors-portfolio#post-6424</link>
			<pubDate>Sun, 10 Oct 2010 18:24:54 +0000</pubDate>
			<dc:creator>jawes</dc:creator>
			<guid isPermaLink="false">6424@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I tested several settings. &#60;/p&#62;
&#60;p&#62;Only when I use the code 'rewrite' =&#38;gt; array('slug'=&#38;gt;$slugRule.'/portfolio','with_front'=&#38;gt;true) and the default permalinks settings or the custom setting &#60;strong&#62;/%category%/%postname%/&#60;/strong&#62; everything works fine. &#60;/p&#62;
&#60;p&#62;When I change the permalink to &#60;strong&#62;/%postname%/&#60;/strong&#62; then the 404 problem occurs.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jawes on "404 errors portfolio"</title>
			<link>http://www.kriesi.at/support/topic/404-errors-portfolio#post-6423</link>
			<pubDate>Sun, 10 Oct 2010 17:01:24 +0000</pubDate>
			<dc:creator>jawes</dc:creator>
			<guid isPermaLink="false">6423@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;And without any reason all the pages get 404 errors except the homepage.&#60;br /&#62;
I have never experienced such a strange behaviour of a template from Kriesi.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jawes on "404 errors portfolio"</title>
			<link>http://www.kriesi.at/support/topic/404-errors-portfolio#post-6421</link>
			<pubDate>Sun, 10 Oct 2010 16:20:07 +0000</pubDate>
			<dc:creator>jawes</dc:creator>
			<guid isPermaLink="false">6421@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;The portfolio is here:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://sonartc.nl/wordpress/agenda-opleidingen/&#34; rel=&#34;nofollow&#34;&#62;http://sonartc.nl/wordpress/agenda-opleidingen/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jawes on "404 errors portfolio"</title>
			<link>http://www.kriesi.at/support/topic/404-errors-portfolio#post-6419</link>
			<pubDate>Sun, 10 Oct 2010 15:25:24 +0000</pubDate>
			<dc:creator>jawes</dc:creator>
			<guid isPermaLink="false">6419@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I read some posts about the permalinks and did the code change in the portfolio.php to get rid of the 'category' in the url.&#60;br /&#62;
But now when I click on a portfolio item I get a 404 error.&#60;br /&#62;
Tried to re-save the permalinks. But it will not work.&#60;br /&#62;
Changing the permalinks to default resolves it.&#60;/p&#62;
&#60;p&#62;My costum structure for the permalinks is: /%postname%/&#60;/p&#62;
&#60;p&#62;The link to the site: &#60;a href=&#34;http://sonartc.nl/wordpress/&#34; rel=&#34;nofollow&#34;&#62;http://sonartc.nl/wordpress/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Hope you can help me out with this strange issue.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
