<?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 - User Favorites: Elfenwald</title>
		<link><a href='http://www.kriesi.at/support/profile/elfenwald'>elfenwald</a></link>
		<description>Support Forum - User Favorites: Elfenwald</description>
		<language>en-US</language>
		<pubDate>Tue, 18 Jun 2013 21:02:24 +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/profile/" rel="self" type="application/rss+xml" />

		<item>
			<title>Devin on "Breadcrumbs glitching... illogical structure"</title>
			<link>http://www.kriesi.at/support/topic/breadcrumbs-glitching-illogical-structure#post-67413</link>
			<pubDate>Tue, 24 Jul 2012 19:27:41 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">67413@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi dunkfu,&#60;/p&#62;
&#60;p&#62;Thanks for posting your end fix. I'm not sure what else you could do with get_the_term_list as it seems to be a bit limited. See: &#60;a href=&#34;http://codex.wordpress.org/Function_Reference/get_the_term_list&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Function_Reference/get_the_term_list&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dunkfu on "Breadcrumbs glitching... illogical structure"</title>
			<link>http://www.kriesi.at/support/topic/breadcrumbs-glitching-illogical-structure#post-66792</link>
			<pubDate>Fri, 20 Jul 2012 18:42:59 +0000</pubDate>
			<dc:creator>dunkfu</dc:creator>
			<guid isPermaLink="false">66792@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi&#60;/p&#62;
&#60;p&#62;Thank you for the response, the above code didn't change the output. I added some hacks to the code that displayed it correct some of the time but it seems like get_the_term_list doesn't always return the array in the same parent/child category order so it is a bit flaky. Here is my hack that sorta fixes the problem, is it possible to bullet proof this or maybe it's not possible to fix this when a product is in multiple categories? &#60;/p&#62;
&#60;p&#62;$prod_cat = array();&#60;br /&#62;
//$prod_cat[] = get_the_term_list(get_the_ID(), 'product_cat','','','','');&#60;br /&#62;
//$trail[] = $prod_cat[0];&#60;/p&#62;
&#60;p&#62;$prod_cat[] = get_the_term_list(get_the_ID(), 'product_cat','',';','','');&#60;br /&#62;
$cat_array = explode(&#34;;&#34;, $prod_cat[0]);&#60;br /&#62;
$parent = $cat_array[count($cat_array) - 1]; &#60;/p&#62;
&#60;p&#62;if(count($cat_array) &#38;gt;= 2) {&#60;br /&#62;
   $child = $cat_array[count($cat_array) - 2];&#60;br /&#62;
} else {&#60;br /&#62;
   $child = $cat_array[0];&#60;br /&#62;
}&#60;br /&#62;
if(count($cat_array) &#38;gt; 0 ) {&#60;br /&#62;
   if($parent == $child) {&#60;br /&#62;
     $trail_array = $parent;&#60;br /&#62;
   } else {&#60;br /&#62;
     $trail_array = $parent . ' &#38;lt;span class=&#34;sep&#34;&#38;gt;' . $separator . '&#38;lt;/span&#38;gt; ' . $child;&#60;br /&#62;
   }&#60;br /&#62;
    $trail[] = $trail_array;&#60;br /&#62;
}
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Breadcrumbs glitching... illogical structure"</title>
			<link>http://www.kriesi.at/support/topic/breadcrumbs-glitching-illogical-structure#post-66619</link>
			<pubDate>Fri, 20 Jul 2012 00:26:26 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">66619@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Replace the code with this.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;/* If there&#38;#39;s an archive page, add it to the trail. */
			if ( !empty( $post_type_object-&#38;gt;has_archive ) &#38;amp;&#38;amp; function_exists( &#38;#39;get_post_type_archive_link&#38;#39; ) ){
					if (is_product()){
						$prod_cat = array();
						$prod_cat[] = get_the_term_list(get_the_ID(), &#38;#39;product_cat&#38;#39;,&#38;#39;&#38;#39;,&#38;#39;&#38;#39;,&#38;#39;&#38;#39;,&#38;#39;&#38;#39;);
						$trail[] = $prod_cat[0];
					}else{
						$trail[] = &#38;#39;&#38;lt;a href=&#38;quot;&#38;#39; . get_post_type_archive_link( $post_type ) . &#38;#39;&#38;quot; title=&#38;quot;&#38;#39; . esc_attr( $post_type_object-&#38;gt;labels-&#38;gt;name ) . &#38;#39;&#38;quot;&#38;gt;&#38;#39; . $post_type_object-&#38;gt;labels-&#38;gt;name . &#38;#39;&#38;lt;/a&#38;gt;&#38;#39;;
					}
				}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dunkfu on "Breadcrumbs glitching... illogical structure"</title>
			<link>http://www.kriesi.at/support/topic/breadcrumbs-glitching-illogical-structure#post-66610</link>
			<pubDate>Thu, 19 Jul 2012 22:51:25 +0000</pubDate>
			<dc:creator>dunkfu</dc:creator>
			<guid isPermaLink="false">66610@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I have the same issue, implementing the above code does add in the Category however it adds in all categories it is in without spaces, in the following example &#34; Eco Friendly OptionsPack N PlaysSleepy Time&#34; is 3 categories: Eco Friendly Options, Pack N Plays and Sleepy Time&#60;/p&#62;
&#60;p&#62;You are here: Home » Browse Products » Eco Friendly OptionsPack N PlaysSleepy Time » BABYBJÖRN Travel Crib Light 2&#60;br /&#62;
BABYBJÖRN Travel Crib Light 2&#60;/p&#62;
&#60;p&#62;This code:&#60;br /&#62;
$prod_cat[] = get_the_term_list(get_the_ID(), 'product_cat');&#60;br /&#62;
var_dump(	$prod_cat);				&#60;/p&#62;
&#60;p&#62;Shows:&#60;br /&#62;
array(1) { [0]=&#38;gt; string(333) &#34;Eco Friendly OptionsPack N PlaysSleepy Time&#34; }&#60;/p&#62;
&#60;p&#62;Is there any way around this?&#60;/p&#62;
&#60;p&#62;Thanks for the help
&#60;/p&#62;</description>
		</item>
		<item>
			<title>tremblayly on "Lists in Product Description tab?"</title>
			<link>http://www.kriesi.at/support/topic/lists-in-product-description-tab#post-51853</link>
			<pubDate>Mon, 16 Apr 2012 17:05:39 +0000</pubDate>
			<dc:creator>tremblayly</dc:creator>
			<guid isPermaLink="false">51853@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Peter,&#60;/p&#62;
&#60;p&#62;I did that but it does not work. Changes get applied only in the custom.css.&#60;/p&#62;
&#60;p&#62;I'm happy putting my customization into the custom.css now that I know what works. &#60;/p&#62;
&#60;p&#62;Thank you.&#60;/p&#62;
&#60;p&#62;Lyse
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Lists in Product Description tab?"</title>
			<link>http://www.kriesi.at/support/topic/lists-in-product-description-tab#post-51666</link>
			<pubDate>Sun, 15 Apr 2012 08:45:30 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">51666@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi! &#60;/p&#62;
&#60;p&#62; Maybe try to add the !important attribute to the code. &#60;/p&#62;
&#60;p&#62; Best regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>tremblayly on "Lists in Product Description tab?"</title>
			<link>http://www.kriesi.at/support/topic/lists-in-product-description-tab#post-51452</link>
			<pubDate>Thu, 12 Apr 2012 22:41:09 +0000</pubDate>
			<dc:creator>tremblayly</dc:creator>
			<guid isPermaLink="false">51452@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I just added the CSS styling into the theme's custom.css file and it works fine. However, since I'm using a child theme, I would have expected the child theme's styles.css to be the one drive the styling?&#60;/p&#62;
&#60;p&#62;Any view on this?&#60;/p&#62;
&#60;p&#62;Lyse
&#60;/p&#62;</description>
		</item>
		<item>
			<title>tremblayly on "Lists in Product Description tab?"</title>
			<link>http://www.kriesi.at/support/topic/lists-in-product-description-tab#post-51436</link>
			<pubDate>Thu, 12 Apr 2012 19:58:36 +0000</pubDate>
			<dc:creator>tremblayly</dc:creator>
			<guid isPermaLink="false">51436@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;I have that problem but your suggested CSS style does not get applied. Any suggestions?&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Lyse
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Change Photo When Change Product Variation"</title>
			<link>http://www.kriesi.at/support/topic/change-photo-when-change-product-variation#post-45107</link>
			<pubDate>Thu, 08 Mar 2012 08:19:08 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">45107@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi! &#60;/p&#62;
&#60;p&#62; Great. I'll close the thread now. &#60;/p&#62;
&#60;p&#62; Regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>boudoirs on "Change Photo When Change Product Variation"</title>
			<link>http://www.kriesi.at/support/topic/change-photo-when-change-product-variation#post-44994</link>
			<pubDate>Wed, 07 Mar 2012 15:51:30 +0000</pubDate>
			<dc:creator>boudoirs</dc:creator>
			<guid isPermaLink="false">44994@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Sorry, I don't know what changed but it now works, thanks to &#34;universe magic&#34;??&#60;br /&#62;
have a nice day!!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>boudoirs on "Change Photo When Change Product Variation"</title>
			<link>http://www.kriesi.at/support/topic/change-photo-when-change-product-variation#post-44992</link>
			<pubDate>Wed, 07 Mar 2012 15:41:03 +0000</pubDate>
			<dc:creator>boudoirs</dc:creator>
			<guid isPermaLink="false">44992@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I have the same kind of issue: latest version of woocommerce, able to upload variation pictures, but no way it will be displayed when choosing on live.&#60;br /&#62;
Devin, would you mind me to send you a mail please?&#60;br /&#62;
Many thanks,&#60;br /&#62;
Sophie
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Change Photo When Change Product Variation"</title>
			<link>http://www.kriesi.at/support/topic/change-photo-when-change-product-variation#post-44907</link>
			<pubDate>Wed, 07 Mar 2012 00:49:39 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">44907@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi JackVa,&#60;/p&#62;
&#60;p&#62;You can send me the link at DevinVinson(at)gmail.com
&#60;/p&#62;</description>
		</item>
		<item>
			<title>JackVa on "Change Photo When Change Product Variation"</title>
			<link>http://www.kriesi.at/support/topic/change-photo-when-change-product-variation#post-44897</link>
			<pubDate>Tue, 06 Mar 2012 22:20:12 +0000</pubDate>
			<dc:creator>JackVa</dc:creator>
			<guid isPermaLink="false">44897@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I also still need your email Devin,&#60;/p&#62;
&#60;p&#62;I also upgraded to 1.5 so this doesn´t fix the issue. the zoom effect is also a feature of the abundance theme. The extra zoom feature powered by woocommerce is an additional plugin. But maybe this one will work out? I might fork out the 30 bucks if that would help with this issues.&#60;/p&#62;
&#60;p&#62;The demo showes that it is possible with this extension: &#60;a href=&#34;http://cloud.chrome-orange.co.uk/?product=product-with-attributes&#34; rel=&#34;nofollow&#34;&#62;http://cloud.chrome-orange.co.uk/?product=product-with-attributes&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>gene158 on "Change Photo When Change Product Variation"</title>
			<link>http://www.kriesi.at/support/topic/change-photo-when-change-product-variation#post-44871</link>
			<pubDate>Tue, 06 Mar 2012 18:57:01 +0000</pubDate>
			<dc:creator>gene158</dc:creator>
			<guid isPermaLink="false">44871@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Devin, I've sent the screencast to your e-mail, haven't tried updating to 1.5 yet, do you want me to upgrade and test again with 1.5 instead?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kriesi on "Some rather ugly CSS glitches on product pages..."</title>
			<link>http://www.kriesi.at/support/topic/some-rather-ugly-css-glitches-on-product-pages#post-44854</link>
			<pubDate>Tue, 06 Mar 2012 16:52:44 +0000</pubDate>
			<dc:creator>Kriesi</dc:creator>
			<guid isPermaLink="false">44854@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey! &#60;/p&#62;
&#60;p&#62; thanks for the help, a new relaese is about to be uploaded and should fix all of those problems :) &#60;/p&#62;
&#60;p&#62; Regards,&#60;br /&#62;
Kriesi
&#60;/p&#62;</description>
		</item>
		<item>
			<title>JackVa on "Change Photo When Change Product Variation"</title>
			<link>http://www.kriesi.at/support/topic/change-photo-when-change-product-variation#post-44675</link>
			<pubDate>Mon, 05 Mar 2012 11:06:48 +0000</pubDate>
			<dc:creator>JackVa</dc:creator>
			<guid isPermaLink="false">44675@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I have the same issue and I made a screencast that shows this issue. It is in german and I won´t post it publicly due to  bandwidth issues ;)&#60;/p&#62;
&#60;p&#62;Can you send me your email so that I can forward the link to someone?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Change Photo When Change Product Variation"</title>
			<link>http://www.kriesi.at/support/topic/change-photo-when-change-product-variation#post-44261</link>
			<pubDate>Thu, 01 Mar 2012 18:51:22 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">44261@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Gene158,&#60;/p&#62;
&#60;p&#62;I did log in and took a look but unfortunately am not seeing the same issue you are describing. Do you think you could use &#60;a href=&#34;http://www.screenr.com/&#34; rel=&#34;nofollow&#34;&#62;http://www.screenr.com/&#60;/a&#62; and do a very short screen capture showing whats going on so that I can see it from your point of view?&#60;/p&#62;
&#60;p&#62;There have also been some updates with WooCommerce which might also fix the issue you are having. I have not checked with version 1.5 for full compatibility with themes yet but we should know of any issues with it in the next day or so.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>gene158 on "Change Photo When Change Product Variation"</title>
			<link>http://www.kriesi.at/support/topic/change-photo-when-change-product-variation#post-44247</link>
			<pubDate>Thu, 01 Mar 2012 17:07:50 +0000</pubDate>
			<dc:creator>gene158</dc:creator>
			<guid isPermaLink="false">44247@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;hello? can anyone else comment on the issue I am having?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>gene158 on "Change Photo When Change Product Variation"</title>
			<link>http://www.kriesi.at/support/topic/change-photo-when-change-product-variation#post-43238</link>
			<pubDate>Thu, 23 Feb 2012 20:23:59 +0000</pubDate>
			<dc:creator>gene158</dc:creator>
			<guid isPermaLink="false">43238@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Devin, has there been any updates on this? Were you able to see the problem I'm describing?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Martin from WaldWort digital publishing on "Theme Options vs. Template Builder - who wins?"</title>
			<link>http://www.kriesi.at/support/topic/theme-options-vs-template-builder-who-wins#post-42989</link>
			<pubDate>Wed, 22 Feb 2012 18:29:56 +0000</pubDate>
			<dc:creator>Martin from WaldWort digital publishing</dc:creator>
			<guid isPermaLink="false">42989@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;errrr - actually I could use a hand here... my guess is that this part in the definitions for single post view in class-breadcrumb.php needs changing: &#60;/p&#62;
&#60;p&#62;&#60;code&#62;/* If there's a path, check for parents. */&#60;br /&#62;
                        if ( !empty( $path ) )&#60;br /&#62;
                                $trail = array_merge( $trail, avia_breadcrumbs_get_parents( '', $path ) );&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;...but HOW do I tell the bugger to link to the Blog page (/blog) instead of the category page &#34;blog&#34; (/category/blog), if the post only has the standard &#34;blog&#34; category assigned, and add &#34;Blog&#34; AND category to the trail in case that an additional category has been assigned. &#60;/p&#62;
&#60;p&#62;What I try to get are breadcrumb trails on blog posts like this: &#60;/p&#62;
&#60;p&#62;home -&#38;gt; blog -&#38;gt; someblogpost   (if post is in blog category, and &#34;blog&#34; should be linked to the Blog page that has been assigned in the theme options)&#60;/p&#62;
&#60;p&#62;home -&#38;gt; blog -&#38;gt; category -&#38;gt; someblogpost (if the post has an additional category assigned)&#60;/p&#62;
&#60;p&#62;My PHP sucks, and I bet there is someone around who needs less than 30 sec to solve this... ;-)&#60;/p&#62;
&#60;p&#62;big thanks!&#60;br /&#62;
Martin&#60;/p&#62;
&#60;p&#62;P.S.: the link to the &#34;Blog&#34; page can be static by page ID, no need to make things more complicated than needed... :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Martin from WaldWort digital publishing on "List formatting again..."</title>
			<link>http://www.kriesi.at/support/topic/list-formatting-again#post-42986</link>
			<pubDate>Wed, 22 Feb 2012 17:55:04 +0000</pubDate>
			<dc:creator>Martin from WaldWort digital publishing</dc:creator>
			<guid isPermaLink="false">42986@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;... ok, maybe there are more elegant ways, but here is a fix for the time being, and maybe someone remembers to include this in the next update, messing up lists without users adding custom CSS is not like a kriesi.at-theme... ;-) If you need more than 2 levels of list items, you have to add definitions for ul ul ul and so forth... &#60;/p&#62;
&#60;p&#62;&#60;code&#62;/* Lists level 1 and 2 for posts and pages */&#60;br /&#62;
.entry-content ul{&#60;br /&#62;
	margin-left: 10px;&#60;br /&#62;
}&#60;br /&#62;
.entry-content ul li{&#60;br /&#62;
	list-style-type: square;&#60;br /&#62;
	list-style-position: outside;&#60;br /&#62;
	margin-bottom: 3px;&#60;br /&#62;
}&#60;br /&#62;
.entry-content ul ul li{&#60;br /&#62;
	list-style-type: circle;&#60;br /&#62;
	list-style-position: outside;&#60;br /&#62;
}&#60;br /&#62;
.entry-content ul ul li{&#60;br /&#62;
	margin-bottom: 3px;&#60;br /&#62;
	margin-left: 35px;&#60;br /&#62;
}&#60;/code&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>digiaudio on "Improving WooCommerce - make your voice count!"</title>
			<link>http://www.kriesi.at/support/topic/improving-woocommerce-make-your-voice-count#post-42962</link>
			<pubDate>Wed, 22 Feb 2012 14:05:48 +0000</pubDate>
			<dc:creator>digiaudio</dc:creator>
			<guid isPermaLink="false">42962@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks Martin:&#60;/p&#62;
&#60;p&#62;I posted some here&#60;br /&#62;
(the other were already posted)&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://woo.uservoice.com/users/26994150-jeroen-niemeijer&#34; rel=&#34;nofollow&#34;&#62;http://woo.uservoice.com/users/26994150-jeroen-niemeijer&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Improving WooCommerce - make your voice count!"</title>
			<link>http://www.kriesi.at/support/topic/improving-woocommerce-make-your-voice-count#post-42953</link>
			<pubDate>Wed, 22 Feb 2012 13:19:32 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">42953@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;That's my favorite btw: &#60;a href=&#34;http://woo.uservoice.com/forums/133476-woocommerce/suggestions/2499031-add-quantity-to-shop-page&#34; rel=&#34;nofollow&#34;&#62;http://woo.uservoice.com/forums/133476-woocommerce/suggestions/2499031-add-quantity-to-shop-page&#60;/a&#62; - I did not create it but I fully agree.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Martin from WaldWort digital publishing on "Improving WooCommerce - make your voice count!"</title>
			<link>http://www.kriesi.at/support/topic/improving-woocommerce-make-your-voice-count#post-42949</link>
			<pubDate>Wed, 22 Feb 2012 12:58:04 +0000</pubDate>
			<dc:creator>Martin from WaldWort digital publishing</dc:creator>
			<guid isPermaLink="false">42949@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey digiaudio -&#60;br /&#62;
makes sense to me, but I am not the one you have to convince :)&#60;br /&#62;
Post the ideas over there, so the Woo-team sees them, and at least two of them will get a vote from me ;-)&#60;br /&#62;
cheers!&#60;br /&#62;
Martin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>digiaudio on "Improving WooCommerce - make your voice count!"</title>
			<link>http://www.kriesi.at/support/topic/improving-woocommerce-make-your-voice-count#post-42944</link>
			<pubDate>Wed, 22 Feb 2012 12:01:56 +0000</pubDate>
			<dc:creator>digiaudio</dc:creator>
			<guid isPermaLink="false">42944@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Martin,&#60;/p&#62;
&#60;p&#62;what do you think of the following ideas ?&#60;/p&#62;
&#60;p&#62;* filter options based on product categories&#60;/p&#62;
&#60;p&#62;* brand possibility (instead of using attributes)/ brand pages&#60;/p&#62;
&#60;p&#62;* extra additional (free format) information on products&#60;/p&#62;
&#60;p&#62;* download area for brochures &#38;amp; product information
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Martin from WaldWort digital publishing on "List formatting again..."</title>
			<link>http://www.kriesi.at/support/topic/list-formatting-again#post-42564</link>
			<pubDate>Mon, 20 Feb 2012 14:57:56 +0000</pubDate>
			<dc:creator>Martin from WaldWort digital publishing</dc:creator>
			<guid isPermaLink="false">42564@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi! &#60;/p&#62;
&#60;p&#62;we already had this topic for lists in product description tabs (see here: &#60;a href=&#34;http://www.kriesi.at/support/topic/lists-in-product-description-tab)&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/support/topic/lists-in-product-description-tab)&#60;/a&#62;, but it seems to be a general problem that Abundance overrides the default list formatting of WordPress, but seems not to provide proper CSS-classes for all usual applications of lists... &#60;/p&#62;
&#60;p&#62;In pages and blog posts lists are displayed as lists, but, as I just discovered, lists that contain sub-lists are not formatted as supposed to, the sub-lists should be indented and have a different bullet, as is standard in WordPress (they are shown the right way in the post editor), but appear as normal list points when viewing the page. &#60;/p&#62;
&#60;p&#62;Example: &#60;a href=&#34;http://www.waldwort.com/werbung/werbung-in-buechern-und-ebooks&#34; rel=&#34;nofollow&#34;&#62;http://www.waldwort.com/werbung/werbung-in-buechern-und-ebooks&#60;/a&#62;&#60;br /&#62;
As you can see in the sourcecode, the markup for the lists and sub-lists is ok, but all list items show up as the same.&#60;/p&#62;
&#60;p&#62;Of course I can start fiddling around with custom CSS, but I think it would make more sense if Abundance could handle a standard feature like lists by default...&#60;br /&#62;
cheers&#60;br /&#62;
Martin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Martin from WaldWort digital publishing on "Improving WooCommerce - make your voice count!"</title>
			<link>http://www.kriesi.at/support/topic/improving-woocommerce-make-your-voice-count#post-42454</link>
			<pubDate>Sun, 19 Feb 2012 11:19:19 +0000</pubDate>
			<dc:creator>Martin from WaldWort digital publishing</dc:creator>
			<guid isPermaLink="false">42454@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I have seen a lot of posts here that were actually bug-reports or feature requests for WooCommerce, not Abundance.&#60;br /&#62;
And I have seen quite a few good ideas here, including my own. ;-)&#60;/p&#62;
&#60;p&#62;Probably some of you do not know yet, so I thought I might post this here: &#60;/p&#62;
&#60;p&#62;The Woo-guys have a nice system in place where users can share their ideas how to improve WooCommerce and assign votes to those ideas. Popular feature requests are more likely to be included in future versions.&#60;br /&#62;
Developers that actually listen to user ideas are cool, and those with a professional idea-management-system in place are even cooler.&#60;br /&#62;
This place should get far more attention, more ideas/comments, and votes. &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://woo.uservoice.com&#34; rel=&#34;nofollow&#34;&#62;http://woo.uservoice.com&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;P.S.: that place is not a support/bug-report area, but solely for feature requests. Their support forum is over there &#60;a href=&#34;http://www.woothemes.com/support-forum/?viewforum=131&#34; rel=&#34;nofollow&#34;&#62;http://www.woothemes.com/support-forum/?viewforum=131&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;P.P.S.: my ideas are here - &#60;a href=&#34;http://woo.uservoice.com/users/26690793-martin-from-waldwort-digital-publishing&#34; rel=&#34;nofollow&#34;&#62;http://woo.uservoice.com/users/26690793-martin-from-waldwort-digital-publishing&#60;/a&#62; - of course would not mind a few votes ;-)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Update warning: looks like there is new trouble with WooCommerce 1.4.3/1.4.4"</title>
			<link>http://www.kriesi.at/support/topic/update-warning-looks-like-there-is-new-trouble-with-woocommerce-143144#post-42429</link>
			<pubDate>Sun, 19 Feb 2012 07:34:39 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">42429@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Glad that it works now - Status set to resolved :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Martin from WaldWort digital publishing on "Update warning: looks like there is new trouble with WooCommerce 1.4.3/1.4.4"</title>
			<link>http://www.kriesi.at/support/topic/update-warning-looks-like-there-is-new-trouble-with-woocommerce-143144#post-42412</link>
			<pubDate>Sun, 19 Feb 2012 00:49:51 +0000</pubDate>
			<dc:creator>Martin from WaldWort digital publishing</dc:creator>
			<guid isPermaLink="false">42412@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I don't get it, but the problem kinda fixed itself. &#60;/p&#62;
&#60;p&#62;I have no caching active on the server and tried with several browsers, so cache/cookies etc. SHOULD have not been a problem, but obviously they were. Logged in again a couple of hours later, everything back to normal. Maybe that crappy forced proxy of our ISP here... &#60;/p&#62;
&#60;p&#62;WTF. &#60;/p&#62;
&#60;p&#62;But it works again, so I SO don't care... ;-)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Martin from WaldWort digital publishing on "Update warning: looks like there is new trouble with WooCommerce 1.4.3/1.4.4"</title>
			<link>http://www.kriesi.at/support/topic/update-warning-looks-like-there-is-new-trouble-with-woocommerce-143144#post-42393</link>
			<pubDate>Sat, 18 Feb 2012 20:14:36 +0000</pubDate>
			<dc:creator>Martin from WaldWort digital publishing</dc:creator>
			<guid isPermaLink="false">42393@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Weird. I have massive problems here since the 1.4.4 update, and they did not go away after switching to another theme and back or deactivating/re-activating WooC.&#60;br /&#62;
Something in the update process (not necessarily yours, I am talking about WooC and the combination with Abundance) seems to be rather unstable - can't be that we have to re-save / revive / whatever all products after each update... &#60;/p&#62;
&#60;p&#62;Maybe because I updated from 1.4.2 to 1.4.4 and missed 1.4.3. What do I know. Fact is: did not change anything else, and the backend has become scrambled and unusable in several areas. &#60;/p&#62;
&#60;p&#62;Will check the WooC forums and/or try to downgrade, but not today, I'm off for now, gotta get away from the keyboard... ;-)&#60;br /&#62;
cheers&#60;br /&#62;
Martin
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
