<?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: Replete and woocommerce subscriptions extension</title>
		<link>http://www.kriesi.at/support/topic/replete-and-woocommerce-subscriptions-extension</link>
		<description>Support Forum - Topic: Replete and woocommerce subscriptions extension</description>
		<language>en-US</language>
		<pubDate>Sat, 25 May 2013 08:10:50 +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/replete-and-woocommerce-subscriptions-extension" rel="self" type="application/rss+xml" />

		<item>
			<title>ganjou on "Replete and woocommerce subscriptions extension"</title>
			<link>http://www.kriesi.at/support/topic/replete-and-woocommerce-subscriptions-extension#post-89407</link>
			<pubDate>Sun, 23 Dec 2012 17:16:39 +0000</pubDate>
			<dc:creator>ganjou</dc:creator>
			<guid isPermaLink="false">89407@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Well, I will just think to set a category !&#60;br /&#62;
Making the variable an array even if it's empty before the foreach is simple and should be fixing the bug.&#60;br /&#62;
I'll try that in case I forget one more time.&#60;br /&#62;
Thank you for your answer !
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Replete and woocommerce subscriptions extension"</title>
			<link>http://www.kriesi.at/support/topic/replete-and-woocommerce-subscriptions-extension#post-89388</link>
			<pubDate>Sun, 23 Dec 2012 09:28:43 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">89388@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks I'll report it to Kriesi. However tbh (because of SEO &#38;amp; ui reasons) you need to set at least one product category for each product anyway. Otherwise you won't get a proper breadcrumb and the user can't sort/filter the items with the shop widgets. Probably you can fix the error by replacing:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;foreach($temp_cats as $key =&#38;gt; $cat)
				{
					if($cat-&#38;gt;parent != 0 &#38;amp;&#38;amp; !in_array($cat-&#38;gt;term_taxonomy_id, $parent_cat))
					{
						$product_category[] = $cat;
						$parent_cat[] = $cat-&#38;gt;parent;
					}
				}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;with:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;if(empty($temp_cats)) $temp_cats = array();
				foreach($temp_cats as $key =&#38;gt; $cat)
				{
					if($cat-&#38;gt;parent != 0 &#38;amp;&#38;amp; !in_array($cat-&#38;gt;term_taxonomy_id, $parent_cat))
					{
						$product_category[] = $cat;
						$parent_cat[] = $cat-&#38;gt;parent;
					}
				}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>ganjou on "Replete and woocommerce subscriptions extension"</title>
			<link>http://www.kriesi.at/support/topic/replete-and-woocommerce-subscriptions-extension#post-89351</link>
			<pubDate>Sat, 22 Dec 2012 16:01:34 +0000</pubDate>
			<dc:creator>ganjou</dc:creator>
			<guid isPermaLink="false">89351@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Well, I went in the config.php to the line 367 : foreach($temp_cats as $key =&#38;gt; $cat)&#60;br /&#62;
And I realised I didn't choose a category for my producut... I did and the bug was fixed.&#60;br /&#62;
May be something to add in the code to avoid bug if no category is chosen...
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ganjou on "Replete and woocommerce subscriptions extension"</title>
			<link>http://www.kriesi.at/support/topic/replete-and-woocommerce-subscriptions-extension#post-89342</link>
			<pubDate>Sat, 22 Dec 2012 15:02:27 +0000</pubDate>
			<dc:creator>ganjou</dc:creator>
			<guid isPermaLink="false">89342@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello,&#60;br /&#62;
Can you check here &#60;a href=&#34;https://webdomitia.fr/boutique&#34; rel=&#34;nofollow&#34;&#62;https://webdomitia.fr/boutique&#60;/a&#62; the product on subscription 9.99/month when you click the product to go to product page : &#60;a href=&#34;https://webdomitia.fr/boutique/boutique/pack-e-commerce/&#34; rel=&#34;nofollow&#34;&#62;https://webdomitia.fr/boutique/boutique/pack-e-commerce/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;You get this error message : Warning: Invalid argument supplied for foreach() in /home/webdomfr/public_html/wp-content/themes/replete/config-woocommerce/config.php on line 367&#60;/p&#62;
&#60;p&#62;Warning: reset() expects parameter 1 to be array, boolean given in /home/webdomfr/public_html/wp-content/themes/replete/config-woocommerce/config.php on line 377&#60;/p&#62;
&#60;p&#62;Catchable fatal error: Object of class WP_Error could not be converted to string in /home/webdomfr/public_html/wp-content/themes/replete/config-woocommerce/config.php on line 384&#60;/p&#62;
&#60;p&#62;With the orange design the error message don't show very clearly...&#60;/p&#62;
&#60;p&#62;It's fine with normal products.&#60;/p&#62;
&#60;p&#62;Thank you for your help !
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
