<?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: up-sells/related products show duplicate after update plugin WooCommerce</title>
		<link>http://www.kriesi.at/support/topic/up-sellsrelated-products-show-duplicate-after-update-plugin-woocommerce</link>
		<description>Support Forum - Topic: up-sells/related products show duplicate after update plugin WooCommerce</description>
		<language>en-US</language>
		<pubDate>Thu, 23 May 2013 11:00:19 +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/up-sellsrelated-products-show-duplicate-after-update-plugin-woocommerce" rel="self" type="application/rss+xml" />

		<item>
			<title>Ismael on "up-sells/related products show duplicate after update plugin WooCommerce"</title>
			<link>http://www.kriesi.at/support/topic/up-sellsrelated-products-show-duplicate-after-update-plugin-woocommerce#post-77088</link>
			<pubDate>Mon, 24 Sep 2012 09:43:35 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">77088@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi luia,&#60;/p&#62;
&#60;p&#62;Glad that Peter helped you. :)&#60;/p&#62;
&#60;p&#62;Cheers,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>luia on "up-sells/related products show duplicate after update plugin WooCommerce"</title>
			<link>http://www.kriesi.at/support/topic/up-sellsrelated-products-show-duplicate-after-update-plugin-woocommerce#post-77076</link>
			<pubDate>Mon, 24 Sep 2012 09:08:54 +0000</pubDate>
			<dc:creator>luia</dc:creator>
			<guid isPermaLink="false">77076@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thank you so much, All work ok now!!!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>luia on "up-sells/related products show duplicate after update plugin WooCommerce"</title>
			<link>http://www.kriesi.at/support/topic/up-sellsrelated-products-show-duplicate-after-update-plugin-woocommerce#post-77066</link>
			<pubDate>Mon, 24 Sep 2012 08:29:09 +0000</pubDate>
			<dc:creator>luia</dc:creator>
			<guid isPermaLink="false">77066@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi thank you for the response, but a I made all the steps and now my theme show two times upsells products and one related products.&#60;br /&#62;
Before only repeat de products of upsells and didn´t show related products.&#60;/p&#62;
&#60;p&#62;Sorry for the inconvenience but I need a solution for this&#60;/p&#62;
&#60;p&#62;Tanks, ;)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "up-sells/related products show duplicate after update plugin WooCommerce"</title>
			<link>http://www.kriesi.at/support/topic/up-sellsrelated-products-show-duplicate-after-update-plugin-woocommerce#post-76893</link>
			<pubDate>Sat, 22 Sep 2012 07:49:23 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">76893@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;br /&#62;
1. Open up propulsion/woocommerce-config/config.php&#60;/p&#62;
&#60;p&#62;2. Add following line to &#34;//single page removes&#34; section on top 1/4 of page:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;remove_action( &#38;#39;woocommerce_after_single_product_summary&#38;#39;, &#38;#39;woocommerce_upsell_display&#38;#39;, 15 );&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Adding this removes new WC1.6.4 hook that places upsell box outside of the product summary section&#60;/p&#62;
&#60;p&#62;3. Switched order of include hooks in //single page adds section to place upsells above related:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;add_action( &#38;#39;woocommerce_single_product_summary&#38;#39;, &#38;#39;avia_woocommerce_output_upsells&#38;#39;, 60);
add_action( &#38;#39;woocommerce_single_product_summary&#38;#39;,&#38;#39;avia_woocommerce_output_related_products&#38;#39;, 60);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;2) Open up functions.php and replace following code:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;if($meta === true)
		{
			get_search_form(); 

			echo &#38;#39;&#38;lt;ul class=&#38;quot;social_bookmarks&#38;quot;&#38;gt;&#38;#39;;
				do_action(&#38;#39;avia_add_social_icon&#38;#39;,&#38;#39;header&#38;#39;);
				if($dribbble = avia_get_option(&#38;#39;dribbble&#38;#39;)) echo &#38;quot;&#38;lt;li class=&#38;#39;dribbble&#38;#39;&#38;gt;&#38;lt;a href=&#38;#39;http://dribbble.com/&#38;quot;.$dribbble.&#38;quot;&#38;#39;&#38;gt;&#38;quot;.__(&#38;#39;Follow us on dribbble&#38;#39;, &#38;#39;avia_framework&#38;#39;).&#38;quot;&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;&#38;quot;;
				if($twitter = avia_get_option(&#38;#39;twitter&#38;#39;)) echo &#38;quot;&#38;lt;li class=&#38;#39;twitter&#38;#39;&#38;gt;&#38;lt;a href=&#38;#39;http://twitter.com/&#38;quot;.$twitter.&#38;quot;&#38;#39;&#38;gt;&#38;quot;.__(&#38;#39;Follow us on Twitter&#38;#39;, &#38;#39;avia_framework&#38;#39;).&#38;quot;&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;&#38;quot;;
				if($facebook = avia_get_option(&#38;#39;facebook&#38;#39;)) echo &#38;quot;&#38;lt;li class=&#38;#39;facebook&#38;#39;&#38;gt;&#38;lt;a href=&#38;#39;&#38;quot;.$facebook.&#38;quot;&#38;#39;&#38;gt;&#38;quot;.__(&#38;#39;Join our Facebook Group&#38;#39;, &#38;#39;avia_framework&#38;#39;).&#38;quot;&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;&#38;quot;;
				echo &#38;#39;	&#38;lt;li class=&#38;quot;rss&#38;quot;&#38;gt;&#38;lt;a href=&#38;quot;&#38;#39;.avia_get_option(&#38;#39;feedburner&#38;#39;,get_bloginfo(&#38;#39;rss2_url&#38;#39;)).&#38;#39;&#38;quot;&#38;gt;RSS&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;&#38;#39;;
			echo &#38;#39;&#38;lt;/ul&#38;gt;&#38;#39;;
		}
		else if(function_exists($meta))
		{
			$meta();
		}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;with&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;if($meta === true &#38;amp;&#38;amp; !is_product())
		{
			get_search_form(); 

			echo &#38;#39;&#38;lt;ul class=&#38;quot;social_bookmarks&#38;quot;&#38;gt;&#38;#39;;
				do_action(&#38;#39;avia_add_social_icon&#38;#39;,&#38;#39;header&#38;#39;);
				if($dribbble = avia_get_option(&#38;#39;dribbble&#38;#39;)) echo &#38;quot;&#38;lt;li class=&#38;#39;dribbble&#38;#39;&#38;gt;&#38;lt;a href=&#38;#39;http://dribbble.com/&#38;quot;.$dribbble.&#38;quot;&#38;#39;&#38;gt;&#38;quot;.__(&#38;#39;Follow us on dribbble&#38;#39;, &#38;#39;avia_framework&#38;#39;).&#38;quot;&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;&#38;quot;;
				if($twitter = avia_get_option(&#38;#39;twitter&#38;#39;)) echo &#38;quot;&#38;lt;li class=&#38;#39;twitter&#38;#39;&#38;gt;&#38;lt;a href=&#38;#39;http://twitter.com/&#38;quot;.$twitter.&#38;quot;&#38;#39;&#38;gt;&#38;quot;.__(&#38;#39;Follow us on Twitter&#38;#39;, &#38;#39;avia_framework&#38;#39;).&#38;quot;&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;&#38;quot;;
				if($facebook = avia_get_option(&#38;#39;facebook&#38;#39;)) echo &#38;quot;&#38;lt;li class=&#38;#39;facebook&#38;#39;&#38;gt;&#38;lt;a href=&#38;#39;&#38;quot;.$facebook.&#38;quot;&#38;#39;&#38;gt;&#38;quot;.__(&#38;#39;Join our Facebook Group&#38;#39;, &#38;#39;avia_framework&#38;#39;).&#38;quot;&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;&#38;quot;;
				echo &#38;#39;	&#38;lt;li class=&#38;quot;rss&#38;quot;&#38;gt;&#38;lt;a href=&#38;quot;&#38;#39;.avia_get_option(&#38;#39;feedburner&#38;#39;,get_bloginfo(&#38;#39;rss2_url&#38;#39;)).&#38;#39;&#38;quot;&#38;gt;RSS&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;&#38;#39;;
			echo &#38;#39;&#38;lt;/ul&#38;gt;&#38;#39;;
		}
		else if(function_exists($meta) &#38;amp;&#38;amp; !is_product())
		{
			$meta();
		}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>luia on "up-sells/related products show duplicate after update plugin WooCommerce"</title>
			<link>http://www.kriesi.at/support/topic/up-sellsrelated-products-show-duplicate-after-update-plugin-woocommerce#post-76686</link>
			<pubDate>Thu, 20 Sep 2012 15:05:21 +0000</pubDate>
			<dc:creator>luia</dc:creator>
			<guid isPermaLink="false">76686@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I need help!!! &#60;/p&#62;
&#60;p&#62;1_ After update plugin WooCommerce the of upsells, related products show two times in the single page of product.&#60;/p&#62;
&#60;p&#62;2 And I want delete de social bookmarks and search form in singles pages of products, really I want delete this in all theme. I want only show this when I create a dinamic template .&#60;/p&#62;
&#60;p&#62;Thank you so much!!! ;)&#60;br /&#62;
Sorry for my English
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
