<?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: variation - Recent Posts</title>
		<link>http://www.kriesi.at/support/tags/variation</link>
		<description>Support Forum - Tag: variation - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Wed, 19 Jun 2013 05:49:25 +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/variation" rel="self" type="application/rss+xml" />

		<item>
			<title>Ismael on "Variable Product Image Problem - Again"</title>
			<link>http://www.kriesi.at/support/topic/variable-product-image-problem-again#post-102733</link>
			<pubDate>Sat, 23 Mar 2013 03:25:25 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">102733@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;/p&#62;
&#60;p&#62;Glad Dude fixed it. :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>PearlsIntl on "Variable Product Image Problem - Again"</title>
			<link>http://www.kriesi.at/support/topic/variable-product-image-problem-again#post-102693</link>
			<pubDate>Fri, 22 Mar 2013 18:55:03 +0000</pubDate>
			<dc:creator>PearlsIntl</dc:creator>
			<guid isPermaLink="false">102693@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Perfect, worked like a charm! Thanks for the quick response!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Variable Product Image Problem - Again"</title>
			<link>http://www.kriesi.at/support/topic/variable-product-image-problem-again#post-102608</link>
			<pubDate>Fri, 22 Mar 2013 09:48:55 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">102608@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;br /&#62;
open up propulsion\config-woocommerce\woocommerce-mod.js and replace the code after following line:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;/* Bildanpassung bei Variationen */&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;with:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;/* Bildanpassung bei Variationen */
jQuery(document).ready(function($) {
    variation_adjustment(&#38;#39;.variations select&#38;#39;);
});

function variation_adjustment(select_el)
{
    var selects = jQuery(select_el);

     //unify select dropdowns
    selects.each(function()
    {
        var el = jQuery(this);

        change_variation_image();

        el.on(&#38;#39;change&#38;#39;, function()
        {
            setTimeout(function(){
                change_variation_image();
            }, 100);
        });

     });
}

function change_variation_image()
{
    var currentVariationId = jQuery(&#38;#39;.single_variation_wrap .variations_button input[name=&#38;quot;variation_id&#38;quot;]&#38;#39;).val(),
    productid = jQuery(&#38;#39;form.variations_form&#38;#39;).data(&#38;#39;product_id&#38;#39;),
    variationsdata = jQuery(&#38;#39;form.variations_form&#38;#39;).data(&#38;#39;product_variations&#38;#39;);

    if ( !productid &#124;&#124; !currentVariationId ) return;

    var currentvariation = variationsdata.filter(function (currentvariation) { return currentvariation.variation_id == currentVariationId });

    if(typeof currentvariation[0] == &#38;quot;undefined&#38;quot; &#124;&#124; !currentvariation[0]) return;

    var imglink = currentvariation[0].image_link;

    if(imglink){
        jQuery(&#38;#39;.slideshow li a img&#38;#39;).each(function()
        {
            var imgscr = jQuery(this).attr(&#38;quot;src&#38;quot;);

            if(imglink == imgscr &#124;&#124; imglink.replace(/-\d+x\d+./, &#38;quot;.&#38;quot;) == imgscr.replace(/-\d+x\d+./, &#38;quot;.&#38;quot;)){
                var index = jQuery(this).parents(&#38;#39;li&#38;#39;).index();
                var container = jQuery(this).parents(&#38;#39;.slideshow_container&#38;#39;);

                if (index != 0){
                    container.find(&#38;#39;.slideshow li a:eq(0)&#38;#39;).css( &#38;quot;display&#38;quot;, &#38;quot;none&#38;quot; );
                }

                var controls    = container.next(&#38;#39;.thumbnails_container&#38;#39;),
                    thumbs      = controls.find(&#38;#39;.slideThumb&#38;#39;);

                thumbs.removeClass(&#38;#39;activeslideThumb&#38;#39;);
                var current = jQuery(&#38;#39;.numeric_controls a:eq(&#38;#39;+index+&#38;#39;)&#38;#39;).addClass(&#38;#39;activeslideThumb&#38;#39;);
                container.find(&#38;#39;.numeric_controls a:eq(&#38;#39;+index+&#38;#39;)&#38;#39;).trigger(&#38;#39;click&#38;#39;);

                if (index != 0){
                    setTimeout(function(){
                        container.find(&#38;#39;.slideshow li a:eq(0)&#38;#39;).css( &#38;quot;display&#38;quot;, &#38;quot;block&#38;quot; );
                    }, 1500);
                }

            }

        });
    }
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>PearlsIntl on "Variable Product Image Problem - Again"</title>
			<link>http://www.kriesi.at/support/topic/variable-product-image-problem-again#post-102530</link>
			<pubDate>Thu, 21 Mar 2013 23:14:16 +0000</pubDate>
			<dc:creator>PearlsIntl</dc:creator>
			<guid isPermaLink="false">102530@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi all--&#60;/p&#62;
&#60;p&#62;I need some help troubleshooting a problem I have with images not changing when a variation is selected. It was doing fine until I updated Woocommerce and updated to the most recent version of Propulsion.&#60;/p&#62;
&#60;p&#62;Here is an example of the issue. &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.pearlsinternational.com/shop/blue-freshwater-pearl-pendant-2/&#34; rel=&#34;nofollow&#34;&#62;http://www.pearlsinternational.com/shop/blue-freshwater-pearl-pendant-2/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Essentially when you select a pearl color under the item, I want it to change the image to match that color. All of the variations have the appropriate image attached to them and they are also all included in the product image slideshow. Like I said, this was working fine until the update. :( &#60;/p&#62;
&#60;p&#62;I have already followed the instructions on these threads:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.kriesi.at/support/topic/change-photo-when-change-product-variation&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/support/topic/change-photo-when-change-product-variation&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.kriesi.at/support/topic/firebug-error-product-variations&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/support/topic/firebug-error-product-variations&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Additionally, I have my thumbnail image container hidden (on purpose- &#60;a href=&#34;http://www.kriesi.at/support/topic/invisible-variations-images)&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/support/topic/invisible-variations-images)&#60;/a&#62; using the following in css/custom.css:&#60;/p&#62;
&#60;p&#62;.single-product .thumbnails_container{&#60;br /&#62;
display: none !important;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;Because thumbnails are not visible and selecting a variation is not changing the image as it should, customers are unable to view the correct product. &#60;/p&#62;
&#60;p&#62;What changed to cause this to stop working? How do I fix it? &#60;/p&#62;
&#60;p&#62;Thanks!!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "WooCommerce How to display Product Variations images on Product Pages ?"</title>
			<link>http://www.kriesi.at/support/topic/woocommerce-how-to-display-product-variations-images-on-product-pages#post-92732</link>
			<pubDate>Mon, 21 Jan 2013 23:07:12 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">92732@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;When it comes to images attached to a post or page, they can only actually be attached to one at a time. So even with typical wordpress set ups you'll get a lot of image duplication on the server.&#60;/p&#62;
&#60;p&#62;It doesn't really hurt load times however, it only effects how much space is taken up on your server by images.&#60;/p&#62;
&#60;p&#62;So say you want to have a picture of a balloon in the blog announcing that it will be for sale in the shop. That picture, if its the featured image for that blog post could not be also attached to the product as its featured image. Because of this constraint as part of wordpress anyway, the themes slideshow gallery only lets you upload new images.&#60;/p&#62;
&#60;p&#62;Where that falls short, is if you already have a group of images uploaded to your server through wordpress but they aren't attached to anything. At that point, you could delete them and then only upload them through the portfolio/product/post/page if you wanted to save on space.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>xGSTQ on "WooCommerce How to display Product Variations images on Product Pages ?"</title>
			<link>http://www.kriesi.at/support/topic/woocommerce-how-to-display-product-variations-images-on-product-pages#post-92728</link>
			<pubDate>Mon, 21 Jan 2013 22:43:13 +0000</pubDate>
			<dc:creator>xGSTQ</dc:creator>
			<guid isPermaLink="false">92728@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thank you foe being honest, I like that&#60;/p&#62;
&#60;p&#62;I think i can manage without it, but its such a cool feature to show product variations, maybe add it to a &#34;wish List&#34; or mention for that product variations is not supported as yet in the themeforest product page.&#60;/p&#62;
&#60;p&#62;I will make do with the themes sideshow gallery, but its not ideal.&#60;/p&#62;
&#60;p&#62;Dont suppose you know of any way to tap into the already uploaded images for the themes gallery plugin do you ?&#60;/p&#62;
&#60;p&#62;For example every product I add im going to have to re-upload the same images over and over meaning im going to end up with lots of the same images on the server which in turn slows the load times and makes managing images a right royal pain
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Product Variation Image"</title>
			<link>http://www.kriesi.at/support/topic/product-variation-image-1#post-92660</link>
			<pubDate>Mon, 21 Jan 2013 17:46:22 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">92660@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi ocklein,&#60;/p&#62;
&#60;p&#62;That topic was in relation to a different theme (propulsion).&#60;/p&#62;
&#60;p&#62;Make sure that you first have a default image selected for your product, then in the Variations tab of your product expand the variation you want to modify the image for (the tiny arrow that appears when you hover next to &#34;Remove&#34;). Click on the blank image box under the SKU box and you can add an image for that variation.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "WooCommerce How to display Product Variations images on Product Pages ?"</title>
			<link>http://www.kriesi.at/support/topic/woocommerce-how-to-display-product-variations-images-on-product-pages#post-92646</link>
			<pubDate>Mon, 21 Jan 2013 17:01:25 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">92646@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey xGSTQ,&#60;/p&#62;
&#60;p&#62;Unfortunately not with the way Flashlight is set up. As WooCommerce has upgraded the theme has not been able to fully support all of its new features. From what Kriesi has said, if he were to upgrade the theme to work with variations and re-do the gallery set up it would not be compatible or upgradable for anyone currently using Flashlight.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ocklein on "Product Variation Image"</title>
			<link>http://www.kriesi.at/support/topic/product-variation-image-1#post-92443</link>
			<pubDate>Sat, 19 Jan 2013 21:58:20 +0000</pubDate>
			<dc:creator>ocklein</dc:creator>
			<guid isPermaLink="false">92443@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi, I am trying to assign an image to product variations in woocommerce, and it will not update. I read this previous post &#60;a href=&#34;http://www.kriesi.at/support/topic/variable-products-dont-update-preview-images&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/support/topic/variable-products-dont-update-preview-images&#60;/a&#62;&#60;br /&#62;
Sounds like this is a bigger problem, and there was a workaround posted but it didn't work for my theme Abundance.&#60;br /&#62;
What do I have to do to make this work?&#60;br /&#62;
Thank you&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://kleindesigncom.fatcow.com/index/shop/recliner/&#34; rel=&#34;nofollow&#34;&#62;http://kleindesigncom.fatcow.com/index/shop/recliner/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>xGSTQ on "WooCommerce How to display Product Variations images on Product Pages ?"</title>
			<link>http://www.kriesi.at/support/topic/woocommerce-how-to-display-product-variations-images-on-product-pages#post-92402</link>
			<pubDate>Sat, 19 Jan 2013 12:53:05 +0000</pubDate>
			<dc:creator>xGSTQ</dc:creator>
			<guid isPermaLink="false">92402@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey, so ive been Googaling around and found plenty of threads with regards to the woocommerce product variations&#60;/p&#62;
&#60;p&#62;I am selling items that potentially have 6 variations (maybe more yet) and I wanted to add a new image for each product variation (selling frames &#38;amp; mounts &#38;amp; prints)&#60;/p&#62;
&#60;p&#62;I have read that the Flashlight theme does not support Product Variation Images however I would really really like this feature.&#60;/p&#62;
&#60;p&#62;The only other way to do this would be to add a gallery to each product with the 6+ images of the various variations, if then I had 100 products, this becomes 600+ images in the gallery because there is no way to re-use the same images in the media gallery using the flashlight theme image uploaded, you have to upload new images every new item you add to the shop.&#60;/p&#62;
&#60;p&#62;Is there any way around this ?&#60;/p&#62;
&#60;p&#62;I would like the product variation so that I only have to upload 1 new image for each item and re-use the variation images already added.&#60;/p&#62;
&#60;p&#62;You can view a shop item here &#38;gt;&#38;gt; &#60;a href=&#34;http://www.jamespictures.co.uk/product/famous-gate&#34; rel=&#34;nofollow&#34;&#62;http://www.jamespictures.co.uk/product/famous-gate&#60;/a&#62; I am still tweaking it though&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Variable product makes gravity forms upload form disappear?"</title>
			<link>http://www.kriesi.at/support/topic/variable-product-makes-gravity-forms-upload-form-disappear#post-69946</link>
			<pubDate>Wed, 08 Aug 2012 05:43:42 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">69946@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi! &#60;/p&#62;
&#60;p&#62; Please contact the extension author - maybe the Gravity Form extension doesn't support upload fields for variations.... &#60;/p&#62;
&#60;p&#62; Best regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kuzz on "Variable product makes gravity forms upload form disappear?"</title>
			<link>http://www.kriesi.at/support/topic/variable-product-makes-gravity-forms-upload-form-disappear#post-69789</link>
			<pubDate>Tue, 07 Aug 2012 14:19:59 +0000</pubDate>
			<dc:creator>Kuzz</dc:creator>
			<guid isPermaLink="false">69789@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;OK so I have the gravity forms plugin installed on my website to allow me to create a prodcut that allows customers to upload an image for print. &#60;/p&#62;
&#60;p&#62;It works fine when the product is set up as a simple product but when I make it a Varible Product and add the different Variations the Image Upload form disappears on the product page and only the variation drop down boxes appear.&#60;/p&#62;
&#60;p&#62;Is there anyway I can get around this? I can not figure it out for the life of me, I need people to be able to pick variations and upload an image.&#60;/p&#62;
&#60;p&#62;Any help woud be much appreciated.&#60;/p&#62;
&#60;p&#62;Kuzz
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Images and Prices for Variation Listings with 2 Options Not Working Properly"</title>
			<link>http://www.kriesi.at/support/topic/images-and-prices-for-variation-listings-with-2-options-not-working-properly#post-60043</link>
			<pubDate>Wed, 13 Jun 2012 16:43:26 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">60043@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi FiddlerStudios,&#60;/p&#62;
&#60;p&#62;Although it has been requested a few times here on the support forums the decision is ultimately up to Kriesi to add in the functionality. If it is a must have feature for you, I would recommend looking into a freelance web developer who has experience with Woo Commerce.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>FiddlerStudios on "Images and Prices for Variation Listings with 2 Options Not Working Properly"</title>
			<link>http://www.kriesi.at/support/topic/images-and-prices-for-variation-listings-with-2-options-not-working-properly#post-60037</link>
			<pubDate>Wed, 13 Jun 2012 15:38:05 +0000</pubDate>
			<dc:creator>FiddlerStudios</dc:creator>
			<guid isPermaLink="false">60037@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I think this is a feature that a lot of people want. If an update is going to break something else on upgrade, include a warning and a method for properly updating. Don't just screw those of us who want it, out of a feature that should have been included from the start. Not a great response.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Images and Prices for Variation Listings with 2 Options Not Working Properly"</title>
			<link>http://www.kriesi.at/support/topic/images-and-prices-for-variation-listings-with-2-options-not-working-properly#post-56016</link>
			<pubDate>Mon, 14 May 2012 16:51:45 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">56016@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Dennes,&#60;/p&#62;
&#60;p&#62;The last time Kriesi addressed this I believe he said he would not be changing the functionality to do this as it would cause issues for anyone who updated after that point.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dennes on "Images and Prices for Variation Listings with 2 Options Not Working Properly"</title>
			<link>http://www.kriesi.at/support/topic/images-and-prices-for-variation-listings-with-2-options-not-working-properly#post-55976</link>
			<pubDate>Mon, 14 May 2012 12:05:16 +0000</pubDate>
			<dc:creator>dennes</dc:creator>
			<guid isPermaLink="false">55976@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Any news on when the fantstic Propulsion theme will be updated to include image selection for variations, so that the product image will change to the selection?&#60;/p&#62;
&#60;p&#62;Would really appreciate advice on this...&#60;/p&#62;
&#60;p&#62;Dennes
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Two Column Product Variations"</title>
			<link>http://www.kriesi.at/support/topic/two-column-product-variations#post-55240</link>
			<pubDate>Tue, 08 May 2012 20:26:23 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">55240@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks for the additional tip SeatherMarqx :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Images and Prices for Variation Listings with 2 Options Not Working Properly"</title>
			<link>http://www.kriesi.at/support/topic/images-and-prices-for-variation-listings-with-2-options-not-working-properly#post-55036</link>
			<pubDate>Mon, 07 May 2012 18:17:53 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">55036@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Kristen,&#60;/p&#62;
&#60;p&#62;Check to see if there are any plugin conflicts that could be causing the normal drag and drop behavior to work incorrectly. If you can provide some additional information on exactly whats happening we can try replicating the issue to see if we can find a cause and solution.&#60;/p&#62;
&#60;p&#62;As for the image selection for variations, I don't believe its a function that the theme supports. IE - selecting a variation from the product page will not cause the product image to change to that selection.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>KristenHodges on "Images and Prices for Variation Listings with 2 Options Not Working Properly"</title>
			<link>http://www.kriesi.at/support/topic/images-and-prices-for-variation-listings-with-2-options-not-working-properly#post-55033</link>
			<pubDate>Mon, 07 May 2012 18:09:23 +0000</pubDate>
			<dc:creator>KristenHodges</dc:creator>
			<guid isPermaLink="false">55033@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Devin, &#60;/p&#62;
&#60;p&#62;Prior to first posting about my issue, I had sent her a screenshot showing her how to do these two things just to make sure there was no misunderstanding.&#60;/p&#62;
&#60;p&#62;She's got the prices taken care of, from the last I've heard from her, but she is still having trouble moving the photos around with drag and drop in the slideshow area that's above the product info area.&#60;/p&#62;
&#60;p&#62;Also, the images set from within the variation photo settings are not showing when either of us tries clicking an option to see the photo for that option.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>SeatherMarqx on "Two Column Product Variations"</title>
			<link>http://www.kriesi.at/support/topic/two-column-product-variations#post-54927</link>
			<pubDate>Mon, 07 May 2012 04:53:25 +0000</pubDate>
			<dc:creator>SeatherMarqx</dc:creator>
			<guid isPermaLink="false">54927@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I just used the $loop variable to test for even and odd and place &#38;lt;tr&#38;gt; accordingly.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>fla_dechen on "Two Column Product Variations"</title>
			<link>http://www.kriesi.at/support/topic/two-column-product-variations#post-54870</link>
			<pubDate>Sun, 06 May 2012 17:24:06 +0000</pubDate>
			<dc:creator>fla_dechen</dc:creator>
			<guid isPermaLink="false">54870@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi guys, I changed the number of columns in variable.php as Dude said, but it did not arranged the variations into two columns...&#60;br /&#62;
what happened was that, now, the variation title and dropdown are in two rows, but the next variation isn't in a column next to the first – it is below and also separated into two rows.&#60;/p&#62;
&#60;p&#62;This link shows what I mean: &#60;a href=&#34;http://www.massivemonster.com.br/images/variation.png&#34; rel=&#34;nofollow&#34;&#62;http://www.massivemonster.com.br/images/variation.png&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;What I did was simply to separate the two &#38;lt;td&#38;gt; into two different &#38;lt;tr&#38;gt;&#60;br /&#62;
What do you think I did wrong? Can you help me?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>SeatherMarqx on "Two Column Product Variations"</title>
			<link>http://www.kriesi.at/support/topic/two-column-product-variations#post-54819</link>
			<pubDate>Sat, 05 May 2012 20:53:34 +0000</pubDate>
			<dc:creator>SeatherMarqx</dc:creator>
			<guid isPermaLink="false">54819@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Exactly what I was looking for. Thank you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Two Column Product Variations"</title>
			<link>http://www.kriesi.at/support/topic/two-column-product-variations#post-54783</link>
			<pubDate>Sat, 05 May 2012 10:43:06 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">54783@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey! &#60;/p&#62;
&#60;p&#62; You need to modify/change the table structure in woocommerce\templates\single-product\add-to-cart\variable.php &#60;/p&#62;
&#60;p&#62; Regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>cmorgansweb on "Variation Order"</title>
			<link>http://www.kriesi.at/support/topic/variation-order#post-54573</link>
			<pubDate>Thu, 03 May 2012 22:28:59 +0000</pubDate>
			<dc:creator>cmorgansweb</dc:creator>
			<guid isPermaLink="false">54573@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks for the reply.  I will wait for WooThemes to get their site back in order and hope they can help with this little problem.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Chris
&#60;/p&#62;</description>
		</item>
		<item>
			<title>SeatherMarqx on "Two Column Product Variations"</title>
			<link>http://www.kriesi.at/support/topic/two-column-product-variations#post-54423</link>
			<pubDate>Thu, 03 May 2012 03:40:03 +0000</pubDate>
			<dc:creator>SeatherMarqx</dc:creator>
			<guid isPermaLink="false">54423@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;No response? Something, please.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Variation Order"</title>
			<link>http://www.kriesi.at/support/topic/variation-order#post-54124</link>
			<pubDate>Tue, 01 May 2012 10:12:21 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">54124@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey! &#60;/p&#62;
&#60;p&#62; The theme doesn't affect the variations order. We just display the code/text woocommerce passes to us. &#60;/p&#62;
&#60;p&#62; Best regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>cmorgansweb on "Variation Order"</title>
			<link>http://www.kriesi.at/support/topic/variation-order#post-54060</link>
			<pubDate>Tue, 01 May 2012 01:02:07 +0000</pubDate>
			<dc:creator>cmorgansweb</dc:creator>
			<guid isPermaLink="false">54060@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Yes, I've tried that.  But, it reorders it again once you hit save.  So, it has to be somewhere within the coding itself.  Woo Themes was hacked and they're still trying to reconfigure all of their data, so I can't go to them to see if maybe it's a woocommerce plugin coding that might be affecting it.  I've had to do a work around for the time being and create 3 pages per product breaking down the variations so that it won't be so confusing for the potential client.  That's the only thing I can do right now, but am hoping that the Theme Developer would chime in here and maybe can figure out why it's doing this and where to edit the code.&#60;/p&#62;
&#60;p&#62;Thanks for the reply though.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>SeatherMarqx on "Two Column Product Variations"</title>
			<link>http://www.kriesi.at/support/topic/two-column-product-variations#post-54053</link>
			<pubDate>Mon, 30 Apr 2012 23:42:37 +0000</pubDate>
			<dc:creator>SeatherMarqx</dc:creator>
			<guid isPermaLink="false">54053@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I've posted here with no avail. How would I make the product options display in two columns? Some of my products have a large amount of options. If no one knows, please just tell me the file in which it's display format is located. I've searched and have found nothing.&#60;/p&#62;
&#60;p&#62;Please reply.&#60;/p&#62;
&#60;p&#62;-Seather
&#60;/p&#62;</description>
		</item>
		<item>
			<title>tremblayly on "Variation Order"</title>
			<link>http://www.kriesi.at/support/topic/variation-order#post-53968</link>
			<pubDate>Mon, 30 Apr 2012 16:06:37 +0000</pubDate>
			<dc:creator>tremblayly</dc:creator>
			<guid isPermaLink="false">53968@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Devin,&#60;/p&#62;
&#60;p&#62;Thanks, I needed to know that too!&#60;/p&#62;
&#60;p&#62;Lyse
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Images and Prices for Variation Listings with 2 Options Not Working Properly"</title>
			<link>http://www.kriesi.at/support/topic/images-and-prices-for-variation-listings-with-2-options-not-working-properly#post-53935</link>
			<pubDate>Mon, 30 Apr 2012 14:10:58 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">53935@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Kristen,&#60;/p&#62;
&#60;p&#62;I'm a little unclear on the two issues going on. I'd also suggest trying to log in and make the changes to your client's site as a second hand description makes it very likely your directions to the client are just not being followed correctly.&#60;/p&#62;
&#60;p&#62;If you could explain what the expected behavior is but what is currently happening that would be helpful as I'm just not quite clear on what is specifically malfunctioning and I don't want to send you down the wrong path to solving an issue you aren't having :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
