<?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: product bundles - Recent Posts</title>
		<link>http://www.kriesi.at/support/tags/product-bundles</link>
		<description>Support Forum - Tag: product bundles - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Tue, 18 Jun 2013 22:45:15 +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/product-bundles" rel="self" type="application/rss+xml" />

		<item>
			<title>Devin on "WooCommerce Product Bundles extension PHP Fatal Error"</title>
			<link>http://www.kriesi.at/support/topic/woocommerce-product-bundles-extension-php-fatal-error#post-89963</link>
			<pubDate>Fri, 04 Jan 2013 02:18:10 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">89963@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Glad Dude could help :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dblomster on "WooCommerce Product Bundles extension PHP Fatal Error"</title>
			<link>http://www.kriesi.at/support/topic/woocommerce-product-bundles-extension-php-fatal-error#post-89901</link>
			<pubDate>Thu, 03 Jan 2013 20:38:37 +0000</pubDate>
			<dc:creator>dblomster</dc:creator>
			<guid isPermaLink="false">89901@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Seems to work just fine. Thanks for your excellent support!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "WooCommerce Product Bundles extension PHP Fatal Error"</title>
			<link>http://www.kriesi.at/support/topic/woocommerce-product-bundles-extension-php-fatal-error#post-89773</link>
			<pubDate>Thu, 03 Jan 2013 09:36:05 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">89773@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Ok I found the problem. Open up replete/config-woocommerce/config.php and replace following code:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;add_action( &#38;#39;woocommerce_before_shop_loop_item&#38;#39;, &#38;#39;avia_add_cart_button&#38;#39;, 6);
function avia_add_cart_button()
{
	global $product;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;with:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;add_action( &#38;#39;woocommerce_before_shop_loop_item&#38;#39;, &#38;#39;avia_add_cart_button&#38;#39;, 6);
function avia_add_cart_button()
{
	global $product;

	if ($product-&#38;gt;product_type == &#38;#39;bundle&#38;#39; ){
		$product = new WC_Product_Bundle($product-&#38;gt;id);
	}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;It seems like you need to &#34;rewrite&#34; the global product variable in order to use the product bundle extension.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dblomster on "WooCommerce Product Bundles extension PHP Fatal Error"</title>
			<link>http://www.kriesi.at/support/topic/woocommerce-product-bundles-extension-php-fatal-error#post-89685</link>
			<pubDate>Wed, 02 Jan 2013 21:45:50 +0000</pubDate>
			<dc:creator>dblomster</dc:creator>
			<guid isPermaLink="false">89685@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Another thing I should mention is that the product bundle I created has variable products in it, so it cannot be put into the cart right away. The buyer needs to do a selection first, just as with other variable products in WooCommerce.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dblomster on "WooCommerce Product Bundles extension PHP Fatal Error"</title>
			<link>http://www.kriesi.at/support/topic/woocommerce-product-bundles-extension-php-fatal-error#post-89678</link>
			<pubDate>Wed, 02 Jan 2013 21:34:36 +0000</pubDate>
			<dc:creator>dblomster</dc:creator>
			<guid isPermaLink="false">89678@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks for your answer.&#60;/p&#62;
&#60;p&#62;In woocommerce-product-bundles.php I needed to comment out this line as well to get the listing to work:&#60;/p&#62;
&#60;p&#62;add_action( 'add_to_cart_text', array($this, 'woo_bundles_add_to_cart_text'), 10 );&#60;/p&#62;
&#60;p&#62;New error message:&#60;br /&#62;
mod_fcgid: stderr: PHP Warning:  call_user_func_array() expects parameter 1 to be a valid callback, first array member is not a valid class name or object in /home/x/public_html/wp-includes/plugin.php on line 406&#60;/p&#62;
&#60;p&#62;I don't know in which file I should put the second line you suggested and what it does. As of now, the button says &#34;Add to cart&#34; which doesn't work, it should be &#34;select alternatives&#34; or similar.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "WooCommerce Product Bundles extension PHP Fatal Error"</title>
			<link>http://www.kriesi.at/support/topic/woocommerce-product-bundles-extension-php-fatal-error#post-89673</link>
			<pubDate>Wed, 02 Jan 2013 21:09:53 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">89673@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I think following line in woocommerce-product-bundles\woocommerce-product-bundles.php causes the error:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;add_action( &#38;#39;add_to_cart_url&#38;#39;, array($this, &#38;#39;woo_bundles_add_to_cart_url&#38;#39;), 10 );&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Please try to delete it (or comment out the line) and check if the error message disappears...&#60;/p&#62;
&#60;p&#62;If yes I guess the problem is that the product bundles class isn't called/initialized properly - following code line should load the product bundle plugin on the shop page:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;add_action( &#38;#39;woocommerce_before_shop_loop_item&#38;#39;, array($this, &#38;#39;woo_bundles_init_bundled_product&#38;#39;) );&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>dblomster on "WooCommerce Product Bundles extension PHP Fatal Error"</title>
			<link>http://www.kriesi.at/support/topic/woocommerce-product-bundles-extension-php-fatal-error#post-89648</link>
			<pubDate>Wed, 02 Jan 2013 20:22:19 +0000</pubDate>
			<dc:creator>dblomster</dc:creator>
			<guid isPermaLink="false">89648@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;I'm using Replete 1.0 on Wordpress 3.5, WooCommerce 1.6.6 with extension Product Bundles 2.27.&#60;/p&#62;
&#60;p&#62;This error is shown in my PHP error log when trying to list products of type &#34;product bundle&#34; at the shop page:&#60;br /&#62;
mod_fcgid: stderr: PHP Fatal error:  Call to undefined method WC_Product::get_available_bundle_variations() in /home/x/public_html/wp-content/plugins/woocommerce-product-bundles/woocommerce-product-bundles.php on line 466&#60;/p&#62;
&#60;p&#62;HTML output breaks where a bundle should be listed, effectively breaking the web site. However, going directly to the product bundle page URL seems to work.&#60;/p&#62;
&#60;p&#62;Surprisingly enough, I read in another thread that there was no issues running the Product Bundles extension on Replete, but for me the above error log message appears only with Replete, not with the Twenty Twelve theme etc.&#60;/p&#62;
&#60;p&#62;Any ideas for a solution?&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dunc R on "product bundles"</title>
			<link>http://www.kriesi.at/support/topic/product-bundles#post-87606</link>
			<pubDate>Tue, 11 Dec 2012 13:57:00 +0000</pubDate>
			<dc:creator>Dunc R</dc:creator>
			<guid isPermaLink="false">87606@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks for the update Nick and Dude. I have now purchased Replete and can confirm that it does work with Product Bundles plugin. Congrats as well - it's a great theme! :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "product bundles"</title>
			<link>http://www.kriesi.at/support/topic/product-bundles#post-87051</link>
			<pubDate>Sat, 08 Dec 2012 07:22:25 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">87051@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I did a quick test with Replete and Product Bundles worked flawlessly with it. Kriesi learned from the issues with Propulsion/Flashlight and thus Replete uses the default WooCommerce templates + code (even the default image attachment function) and Kriesi doesn't exclude any default plugin filters, actions, etc.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "product bundles"</title>
			<link>http://www.kriesi.at/support/topic/product-bundles#post-87047</link>
			<pubDate>Sat, 08 Dec 2012 06:12:14 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">87047@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I could test it out , but I don't have it unfortunately. Please email me the plugin zip in order for me to be able to answer you. My email is usjahm (at) gmail (dot) com. Since Woo told you to come here for support and I can't provide any without the plugin, I guess they are ok with it. When i am through, I'll delete it. Ask Woo if it's ok with them,&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "product bundles"</title>
			<link>http://www.kriesi.at/support/topic/product-bundles#post-87007</link>
			<pubDate>Sat, 08 Dec 2012 03:06:53 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">87007@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I don't have the access to Product Bundles plugin so let me tag the rest of the support team and ask for their opinion. Although our support leader said that the plugin is not compatible across Avia Themes yet. Kriesi is fixing the issue at the moment.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dunc R on "product bundles"</title>
			<link>http://www.kriesi.at/support/topic/product-bundles#post-87002</link>
			<pubDate>Fri, 07 Dec 2012 23:28:25 +0000</pubDate>
			<dc:creator>Dunc R</dc:creator>
			<guid isPermaLink="false">87002@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Ismael, please can you tell me if this compatibility problem is across all Kriesi themes. Unfortunately, I bought Abundance theme before finding out that it doesn't work with the Product Bundles plugin. I'd like to buy Replete theme, but can't if it doesn't work with Product Bundles.&#60;/p&#62;
&#60;p&#62;Thanks&#60;br /&#62;
Duncan
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "product bundles"</title>
			<link>http://www.kriesi.at/support/topic/product-bundles#post-86686</link>
			<pubDate>Thu, 06 Dec 2012 04:47:49 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">86686@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Our support leader declared that the plugin is not compatible with the theme. Looks like Kriesi has been looking to fix the issue regarding this plugin. We will tag Kriesi on this thread.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>gdws on "product bundles"</title>
			<link>http://www.kriesi.at/support/topic/product-bundles#post-86680</link>
			<pubDate>Thu, 06 Dec 2012 01:46:18 +0000</pubDate>
			<dc:creator>gdws</dc:creator>
			<guid isPermaLink="false">86680@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;i see several threads about product bundles by woothemes not being compatible with this theme. Has a solution been found yet for this?&#60;br /&#62;
I do not want to spend the 30 bucks on the plugin and then not be able to use it.&#60;/p&#62;
&#60;p&#62;I already know from the other threads that woothemes will not help fix the issue as its not a wootheme&#60;br /&#62;
and their policy states any support for a woo product is only if there is an issue with their product/themes&#60;/p&#62;
&#60;p&#62;from what I read switching the theme to say twenty eleven the product bundles works fine.&#60;br /&#62;
it only breaks because of abundance theme and certain code being changed within the theme for woocommerce.&#60;/p&#62;
&#60;p&#62;being that I already purchased this theme I need to know if I buy this plugin will i get full support to correct this issue with the theme? or are you working on a fix for this?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>redloungeagency on "Woocommerce Product Bundles Extension layout"</title>
			<link>http://www.kriesi.at/support/topic/woocommerce-product-bundles-extension-layout#post-84479</link>
			<pubDate>Sun, 18 Nov 2012 22:15:06 +0000</pubDate>
			<dc:creator>redloungeagency</dc:creator>
			<guid isPermaLink="false">84479@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Ok great, thanks.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Woocommerce Product Bundles Extension layout"</title>
			<link>http://www.kriesi.at/support/topic/woocommerce-product-bundles-extension-layout#post-84291</link>
			<pubDate>Fri, 16 Nov 2012 19:40:06 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">84291@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;The example you linked with the plugin active seems to be working. I don't know what it entails as far as setting up product groups or if that is the correct/incorrect layout but the actual functionality of adding a bundle to the cart seemed to work when I tested it.&#60;/p&#62;
&#60;p&#62;As Peter said, the extension is not directly compatible with the them. If that means some settings simply don't work to get the layout working or if there are other issues I do not know. However, on the surface in your example it seems to work. If in testing you find the products get added to the cart and on checkout the correct order is listed then I assume the only issue is layout/styling.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>redloungeagency on "Woocommerce Product Bundles Extension layout"</title>
			<link>http://www.kriesi.at/support/topic/woocommerce-product-bundles-extension-layout#post-84141</link>
			<pubDate>Fri, 16 Nov 2012 00:27:42 +0000</pubDate>
			<dc:creator>redloungeagency</dc:creator>
			<guid isPermaLink="false">84141@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I don't understand what you mean...?&#60;br /&#62;
Do we need to do anything to make it work?&#60;/p&#62;
&#60;p&#62;We haven't made any code changes for this, we have just activated the plugin.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Woocommerce Product Bundles Extension layout"</title>
			<link>http://www.kriesi.at/support/topic/woocommerce-product-bundles-extension-layout#post-84096</link>
			<pubDate>Thu, 15 Nov 2012 15:43:29 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">84096@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey redloungeagency,&#60;/p&#62;
&#60;p&#62;It looks like its just adding a new type of product (the bundle) which can be added to the like normal. If that is the case then all *should* work. &#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>redloungeagency on "Woocommerce Product Bundles Extension layout"</title>
			<link>http://www.kriesi.at/support/topic/woocommerce-product-bundles-extension-layout#post-83989</link>
			<pubDate>Wed, 14 Nov 2012 22:50:46 +0000</pubDate>
			<dc:creator>redloungeagency</dc:creator>
			<guid isPermaLink="false">83989@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Do you mind looking at URL:&#60;br /&#62;
&#60;a href=&#34;http://lto.pixelfishwebsites.com.au/shop/party-kits/fairy-party-kit/&#34; rel=&#34;nofollow&#34;&#62;http://lto.pixelfishwebsites.com.au/shop/party-kits/fairy-party-kit/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;That is a product bundle and it seems to work properly (even if it doesn't display in the way we would ideally like).&#60;/p&#62;
&#60;p&#62;Will you please clarify in what way the extension is incompatible with the theme?&#60;br /&#62;
If it seems to work, is there something we are missing?&#60;/p&#62;
&#60;p&#62;I can see this in the other thread:&#60;/p&#62;
&#60;blockquote&#62;&#60;p&#62;It seems like the &#34;woocommerce_add_to_cart&#34; hook in woocommerce\classes\class-wc-cart.php offers 6 parameters and the avia_add_to_cart just supports 2. Unfortunately I don't see an easy way to add the standard hook to our configuration file.&#60;/p&#62;&#60;/blockquote&#62;
&#60;p&#62;...but I'm not sure what that means...
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Woocommerce Product Bundles Extension layout"</title>
			<link>http://www.kriesi.at/support/topic/woocommerce-product-bundles-extension-layout#post-82648</link>
			<pubDate>Wed, 07 Nov 2012 12:14:35 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">82648@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi! &#60;/p&#62;
&#60;p&#62; The product bundle extension is not compatible with our themes. Kriesi is aware of this problem  ( &#60;a href=&#34;http://www.kriesi.at/support/topic/recomended-plugin-product-bundle-not-working-with-propulsion-or-avia#post-82079&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/support/topic/recomended-plugin-product-bundle-not-working-with-propulsion-or-avia#post-82079&#60;/a&#62; ) however there's no solution yet.&#60;/p&#62;
&#60;p&#62; Best regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>redloungeagency on "Woocommerce Product Bundles Extension layout"</title>
			<link>http://www.kriesi.at/support/topic/woocommerce-product-bundles-extension-layout#post-82617</link>
			<pubDate>Wed, 07 Nov 2012 05:43:55 +0000</pubDate>
			<dc:creator>redloungeagency</dc:creator>
			<guid isPermaLink="false">82617@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Yes, sure - I understand that. It must be hard to keep up with every new thing they release!&#60;/p&#62;
&#60;p&#62;Thank you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Woocommerce Product Bundles Extension layout"</title>
			<link>http://www.kriesi.at/support/topic/woocommerce-product-bundles-extension-layout#post-82610</link>
			<pubDate>Wed, 07 Nov 2012 01:56:33 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">82610@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I don't have any of their premium extensions. They have over 100 of those extensions and I want to help you, I just have no code to help you with. I will forward this to the support team manager and Kriesi to decide the best way to do this.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>redloungeagency on "Woocommerce Product Bundles Extension layout"</title>
			<link>http://www.kriesi.at/support/topic/woocommerce-product-bundles-extension-layout#post-82589</link>
			<pubDate>Tue, 06 Nov 2012 21:50:07 +0000</pubDate>
			<dc:creator>redloungeagency</dc:creator>
			<guid isPermaLink="false">82589@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Given that the example on the woocommerce documentation (&#60;a href=&#34;http://wcdocs.woothemes.com/user-guide/bundles/&#34; rel=&#34;nofollow&#34;&#62;http://wcdocs.woothemes.com/user-guide/bundles/&#60;/a&#62;) appears in the way I am asking about, I had expected that if I bought this theme, it would render in the same way.&#60;/p&#62;
&#60;p&#62;I have contacted woocommerce support (as it is an official woocommerce extension/plugin) and they said the following:&#60;/p&#62;
&#60;blockquote&#62;&#60;p&#62;Unfortunately this customization/modification is beyond the extent of our support here at Woo.&#60;br /&#62;
&#60;a href=&#34;http://woothemes.com/support-policy/&#34; rel=&#34;nofollow&#34;&#62;http://woothemes.com/support-policy/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I hope to point you (or your developer) in the right direction though.&#60;/p&#62;
&#60;p&#62;This can be changed by looking into the hooks available to you in WooCommerce.&#60;br /&#62;
&#60;a href=&#34;http://wcdocs.woothemes.com/codex/extending/hooks/&#34; rel=&#34;nofollow&#34;&#62;http://wcdocs.woothemes.com/codex/extending/hooks/&#60;/a&#62;
&#60;/p&#62;&#60;/blockquote&#62;</description>
		</item>
		<item>
			<title>Devin on "Woocommerce Product Bundles Extension layout"</title>
			<link>http://www.kriesi.at/support/topic/woocommerce-product-bundles-extension-layout#post-81965</link>
			<pubDate>Fri, 02 Nov 2012 13:48:46 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">81965@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi redloungeagency,&#60;/p&#62;
&#60;p&#62;I'm not familiar with the bundle plugin but it probably needs the output for the bundles to be added before the product summary/tabs instead of after the price. You should be able to check with the extension/woo commerce support and get the specifics for that extension.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>redloungeagency on "Woocommerce Product Bundles Extension layout"</title>
			<link>http://www.kriesi.at/support/topic/woocommerce-product-bundles-extension-layout#post-81763</link>
			<pubDate>Thu, 01 Nov 2012 01:17:22 +0000</pubDate>
			<dc:creator>redloungeagency</dc:creator>
			<guid isPermaLink="false">81763@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Is there a way to manipulate the theme to display the simple products included in a product bundle (&#60;a href=&#34;http://wcdocs.woothemes.com/user-guide/bundles/&#34; rel=&#34;nofollow&#34;&#62;http://wcdocs.woothemes.com/user-guide/bundles/&#60;/a&#62;) listed down the right in the main product area, as with the example given in the extension?&#60;br /&#62;
&#60;img alt=&#34;&#34; src=&#34;http://wcdocs.woothemes.com/wp-content/uploads/2012/06/Rough-Modern-2x4-Set-Page.jpg&#34; /&#62;&#60;/p&#62;
&#60;p&#62;My site currently looks like this:&#60;/p&#62;
&#60;p&#62;&#60;img alt=&#34;&#34; src=&#34;http://lto.pixelfishwebsites.com.au/bundle-current.jpg&#34; /&#62;&#60;/p&#62;
&#60;p&#62;I want it to look like this (or like the extension's example):&#60;/p&#62;
&#60;p&#62;&#60;img alt=&#34;&#34; src=&#34;http://lto.pixelfishwebsites.com.au/bundle-ideal.jpg&#34; /&#62;
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
