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

		<item>
			<title>Nick on "Duplicate product descriptions"</title>
			<link>http://www.kriesi.at/support/topic/duplicate-product-descriptions#post-89456</link>
			<pubDate>Mon, 24 Dec 2012 13:57:19 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">89456@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;lol. I should have read the first post. hahaha. However that is the solution because there is no reason I can think of to have a while loop since there shouldn't be more than one item on that page. &#60;/p&#62;
&#60;p&#62;thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>qery on "Duplicate product descriptions"</title>
			<link>http://www.kriesi.at/support/topic/duplicate-product-descriptions#post-89401</link>
			<pubDate>Sun, 23 Dec 2012 15:36:39 +0000</pubDate>
			<dc:creator>qery</dc:creator>
			<guid isPermaLink="false">89401@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Yes, this works, as I mentioned in my first post. If there are no other solutions, I'll stick to this for now. Hopefully, this will be fixed in some updates.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Duplicate product descriptions"</title>
			<link>http://www.kriesi.at/support/topic/duplicate-product-descriptions#post-89254</link>
			<pubDate>Fri, 21 Dec 2012 16:56:57 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">89254@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I spent some time looking into this and in the last few weeks there are similar incidents with duplicate product items with jingoshop, woocommerce, marketpress/wpmu when used with &#60;a href=&#34;http://inoplugs.com/wpml&#34;&#62;WPML&#60;/a&#62; after wordpress 3.5 update. The themes used in those cases are not Kriesi's.&#60;/p&#62;
&#60;p&#62;So the issue is a bit more complex, and centers on wp3.5 upgrade. With a complex system such as wordpress and thousands of plugins there are always bound to be compatibility hiccups during updates since its impossible to q/a every possible framework/plugin/core combinations (considering each has multiple versions).&#60;/p&#62;
&#60;p&#62;Here is the solution used by jingoshop that I adapted for woocommerce&#60;/p&#62;
&#60;p&#62;1) You can either edit a file inside woocommerce plugin /templates/single-product.php or you can create an empty folder *inside the propulsion theme folder* and call it /woocommerce/ and copy and edit the single-product.php file there so that way it will over-ride the plugin file.&#60;/p&#62;
&#60;p&#62;In either case you will need to replace lines 24-28 that look like&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php while ( have_posts() ) : the_post(); ?&#38;gt;

&#38;lt;?php woocommerce_get_template_part( &#38;#39;content&#38;#39;, &#38;#39;single-product&#38;#39; ); ?&#38;gt;

&#38;lt;?php endwhile; // end of the loop. ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;with the following&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
if ( have_posts() ) {
    the_post();
    woocommerce_get_template_part( &#38;#39;content&#38;#39;, &#38;#39;single-product&#38;#39; );
}
?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;The problem lies somewhere in the way the query is being reset - 	 wp_reset_postdata instead of wp_reset_query in product page loops perhaps. But for now since the actual product is not doubled in the database, this solution works.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://inoplugs.com/wpml&#34;&#62;WPML&#60;/a&#62; version 2.63 is out today, with wp3.5 bugfixes, as well as update to Strings and Translation Management plugins.&#60;/p&#62;
&#60;p&#62;Reference:&#60;/p&#62;
&#60;p&#62;Jingoshop - &#60;a href=&#34;http://wpml.org/forums/topic/wordpress-3-5-and-jigoshop-display-products-twice/?affiliate_key=K9b6X1wRp9SS&#34;&#62;http://wpml.org/forums/topic/wordpress-3-5-and-jigoshop-display-products-twice/&#60;/a&#62;&#60;br /&#62;
Marketpress - &#60;a href=&#34;http://premium.wpmudev.org/forums/topic/wpml-marketpress-multishop-products-show-up-double-or-trilple-in-global-shop&#34; rel=&#34;nofollow&#34;&#62;http://premium.wpmudev.org/forums/topic/wpml-marketpress-multishop-products-show-up-double-or-trilple-in-global-shop&#60;/a&#62;&#60;br /&#62;
WooCommerce - &#60;a href=&#34;http://wpml.org/forums/topic/wordpress-3-5-update-crash-woocommerce-shows-twice-product-page/?affiliate_key=K9b6X1wRp9SS&#34;&#62;http://wpml.org/forums/topic/wordpress-3-5-update-crash-woocommerce-shows-twice-product-page/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>qery on "Duplicate product descriptions"</title>
			<link>http://www.kriesi.at/support/topic/duplicate-product-descriptions#post-89217</link>
			<pubDate>Fri, 21 Dec 2012 07:50:16 +0000</pubDate>
			<dc:creator>qery</dc:creator>
			<guid isPermaLink="false">89217@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Here is a screenshot of how it looks: &#60;a href=&#34;http://imageshack.us/photo/my-images/802/capture1px.png/&#34; rel=&#34;nofollow&#34;&#62;http://imageshack.us/photo/my-images/802/capture1px.png/&#60;/a&#62;&#60;br /&#62;
1. All product pages. Blog posts display correctly.&#60;br /&#62;
2. No, only woocommerce, &#60;a href=&#34;http://inoplugs.com/wpml&#34;&#62;WPML&#60;/a&#62; and strings&#60;br /&#62;
3. Initially I didnt' make any translations. Just after activating the &#60;a href=&#34;http://inoplugs.com/wpml&#34;&#62;WPML&#60;/a&#62; all the content on product pages except the slider is duplicated.&#60;br /&#62;
4. Both. On an English page I see doubled english description, on a localized page i see doubled localized description&#60;br /&#62;
5. Folders, but i tries different options&#60;br /&#62;
6. No, almost everything is already translated&#60;/p&#62;
&#60;p&#62;I think you should be able to replicate the issue by installing &#60;a href=&#34;http://inoplugs.com/wpml&#34;&#62;WPML&#60;/a&#62; along with the Propulsion with dummy products data and check if you see duplicate content on product pages.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Duplicate product descriptions"</title>
			<link>http://www.kriesi.at/support/topic/duplicate-product-descriptions#post-89171</link>
			<pubDate>Thu, 20 Dec 2012 22:34:40 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">89171@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;The solution I used was for a different but closely related theme that unfortunately  will not work here. Lets instead go over the process and see if we can spot a problem somewhere. &#60;/p&#62;
&#60;p&#62;I reread you original post, and I am not sure I agree with the syllogism you used,. The only way to prove it is through testing. I dimly remember reading a support item on &#60;a href=&#34;http://inoplugs.com/wpml&#34;&#62;WPML&#60;/a&#62; forum where an employee accidently overwritten every single translation on the company website and his manager was asking if it was reversible.  &#60;/p&#62;
&#60;p&#62;Would you please elaborate ...(a) How many posts were affected?&#60;br /&#62;
Were there other plugins activated besides &#60;a href=&#34;http://inoplugs.com/wpml&#34;&#62;WPML&#60;/a&#62; and strings?&#60;br /&#62;
What was being done when this happen? (portfolio translation, posts, taxonomies?)&#60;br /&#62;
You said the posts are doubled.. double in the main language or the translation? or doubled so that one post in English and the post that should be in a different language is a copy of the English post?&#60;br /&#62;
Are you using query strings, folders or sub-domains to segregate the translations?&#60;br /&#62;
How is the site set up, do you use freelance translators? &#60;/p&#62;
&#60;p&#62;How would you suggest I go about replicating the event?&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>qery on "Duplicate product descriptions"</title>
			<link>http://www.kriesi.at/support/topic/duplicate-product-descriptions#post-89087</link>
			<pubDate>Thu, 20 Dec 2012 12:56:14 +0000</pubDate>
			<dc:creator>qery</dc:creator>
			<guid isPermaLink="false">89087@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I'm developing locally, so I can't provide an account. Can you desribe the solution? I have all the latest components and String Translation plugin installed.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Duplicate product descriptions"</title>
			<link>http://www.kriesi.at/support/topic/duplicate-product-descriptions#post-89047</link>
			<pubDate>Thu, 20 Dec 2012 07:35:59 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">89047@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Would you please make me a temp Wordpress admin account. I will get you up and running. My email is usjahm (at) gmail (dot) com.  You are using the latest &#60;a href=&#34;http://inoplugs.com/wpml&#34;&#62;WPML&#60;/a&#62; plugin and have the Strings plugin installed as well?  ... and you have the latest theme version also, 1.7? If your site is live, I am careful, haven't crashed a single client yet.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Duplicate product descriptions"</title>
			<link>http://www.kriesi.at/support/topic/duplicate-product-descriptions#post-89046</link>
			<pubDate>Thu, 20 Dec 2012 07:26:07 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">89046@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey! &#60;/p&#62;
&#60;p&#62; I tagged this thread for Nick - afaik he solved this issue for another user and he already knows the solution. &#60;/p&#62;
&#60;p&#62; Best regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>qery on "Duplicate product descriptions"</title>
			<link>http://www.kriesi.at/support/topic/duplicate-product-descriptions#post-88983</link>
			<pubDate>Wed, 19 Dec 2012 17:55:46 +0000</pubDate>
			<dc:creator>qery</dc:creator>
			<guid isPermaLink="false">88983@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi, after installing &#60;a href=&#34;http://inoplugs.com/wpml&#34;&#62;WPML&#60;/a&#62; I've got duplicate product descriptions and titles on all product pages, just like the product page was added two times. When I switch to a default theme, the duplicates vanish. If I disable &#60;a href=&#34;http://inoplugs.com/wpml&#34;&#62;WPML&#60;/a&#62;, the duplicates vanish also. So the problem eventually lies in how &#60;a href=&#34;http://inoplugs.com/wpml&#34;&#62;WPML&#60;/a&#62; works with Propulsion. If I edit the single-product.php file of the woocommerce/templates by changing &#60;/p&#62;
&#60;p&#62;&#38;lt;?php while ( have_posts() ) : the_post(); ?&#38;gt;&#60;br /&#62;
&#38;lt;?php woocommerce_get_template_part( 'content', 'single-product' ); ?&#38;gt;&#60;br /&#62;
&#38;lt;?php endwhile; // end of the loop. ?&#38;gt;&#60;/p&#62;
&#60;p&#62;with&#60;/p&#62;
&#60;p&#62;&#38;lt;?php if ( have_posts() ) : the_post(); ?&#38;gt;&#60;br /&#62;
&#38;lt;?php woocommerce_get_template_part( 'content', 'single-product' ); ?&#38;gt;&#60;br /&#62;
&#38;lt;?php endif; &#60;/p&#62;
&#60;p&#62;it works ok (no duplicates), but that probably does not address the root of the problem. &#60;/p&#62;
&#60;p&#62;Any suggestions about fixing the issue?&#60;/p&#62;
&#60;p&#62;I'm running the latest versions of all components.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
