<?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: extension - Recent Posts</title>
		<link>http://www.kriesi.at/support/tags/extension</link>
		<description>Support Forum - Tag: extension - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Sat, 18 May 2013 07:20:12 +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/extension" 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>Dude on "Items stay in Basket"</title>
			<link>http://www.kriesi.at/support/topic/items-stay-in-basket#post-80322</link>
			<pubDate>Fri, 19 Oct 2012 07:06:37 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">80322@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi! &#60;/p&#62;
&#60;p&#62; Glad that it works now :) &#60;/p&#62;
&#60;p&#62; Regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kuzz on "Items stay in Basket"</title>
			<link>http://www.kriesi.at/support/topic/items-stay-in-basket#post-80256</link>
			<pubDate>Thu, 18 Oct 2012 14:15:08 +0000</pubDate>
			<dc:creator>Kuzz</dc:creator>
			<guid isPermaLink="false">80256@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Issue now sorted. There was no problem on any end it was because the account with Ogone and the settings in the extension were alll in test mode... Once we got everything sorted and moved the Ogone to a production account it all worked fine and the item went out of the basket when returned to the website after payment.&#60;/p&#62;
&#60;p&#62;For anyone else that thinks it's an issue before they move to production account. &#60;/p&#62;
&#60;p&#62;Thanks.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Items stay in Basket"</title>
			<link>http://www.kriesi.at/support/topic/items-stay-in-basket#post-79667</link>
			<pubDate>Sun, 14 Oct 2012 07:12:27 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">79667@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi! &#60;/p&#62;
&#60;p&#62; Great - if they provide a solution please post it here because it may help other users too. &#60;/p&#62;
&#60;p&#62; Best regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kuzz on "Items stay in Basket"</title>
			<link>http://www.kriesi.at/support/topic/items-stay-in-basket#post-79539</link>
			<pubDate>Fri, 12 Oct 2012 11:45:19 +0000</pubDate>
			<dc:creator>Kuzz</dc:creator>
			<guid isPermaLink="false">79539@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;OK thank you for your reply.&#60;/p&#62;
&#60;p&#62;I have contacted the support team at WooCommerce so hopefully they can provide an answer. I will keep this thread updated with progress and if the issue is fixed.&#60;/p&#62;
&#60;p&#62;Regards&#60;/p&#62;
&#60;p&#62;Karam
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Items stay in Basket"</title>
			<link>http://www.kriesi.at/support/topic/items-stay-in-basket#post-79519</link>
			<pubDate>Fri, 12 Oct 2012 08:43:36 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">79519@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey! &#60;/p&#62;
&#60;p&#62; This is probably an issue with the payment gateway extension itself. Please contact the woocommerce support staff: &#60;a href=&#34;http://www.woothemes.com/support/&#34; rel=&#34;nofollow&#34;&#62;http://www.woothemes.com/support/&#60;/a&#62; &#60;/p&#62;
&#60;p&#62; Regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kuzz on "Items stay in Basket"</title>
			<link>http://www.kriesi.at/support/topic/items-stay-in-basket#post-79428</link>
			<pubDate>Thu, 11 Oct 2012 14:35:04 +0000</pubDate>
			<dc:creator>Kuzz</dc:creator>
			<guid isPermaLink="false">79428@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;I have recently installed the Ogone Payment Gateway plugin that allows my site to accept card payments via Ogone. &#60;/p&#62;
&#60;p&#62;Everything works fine but whilst testing I've noticed one problem. After getting directed back to the website after payment on Ogones site. The item the person as paid for is still in the shopping basket. This shouldn't be there after payment.&#60;/p&#62;
&#60;p&#62;Your help with this issue would be much appreciated.&#60;/p&#62;
&#60;p&#62;Regards&#60;/p&#62;
&#60;p&#62;Karam
&#60;/p&#62;</description>
		</item>
		<item>
			<title>brouge on "portfolio search extension"</title>
			<link>http://www.kriesi.at/support/topic/portfolio-search-extension#post-35811</link>
			<pubDate>Thu, 22 Dec 2011 11:42:29 +0000</pubDate>
			<dc:creator>brouge</dc:creator>
			<guid isPermaLink="false">35811@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;you are right dude!&#60;br /&#62;
i found it in the moment you wrote your answer!&#60;br /&#62;
what a coincidence ;-)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "portfolio search extension"</title>
			<link>http://www.kriesi.at/support/topic/portfolio-search-extension#post-35809</link>
			<pubDate>Thu, 22 Dec 2011 11:41:30 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">35809@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I think &#60;a href=&#34;http://inoplugs.com/relevanssi&#34;&#62;Relevanssi&#60;/a&#62; is way better - it's actively maintained, also available for free and offers more features but just my 2 cents :)&#60;/p&#62;
&#60;p&#62;The last update for search unleashed was over one year ago and around 2/3 of the users say it's broken....
&#60;/p&#62;</description>
		</item>
		<item>
			<title>brouge on "portfolio search extension"</title>
			<link>http://www.kriesi.at/support/topic/portfolio-search-extension#post-35808</link>
			<pubDate>Thu, 22 Dec 2011 11:38:29 +0000</pubDate>
			<dc:creator>brouge</dc:creator>
			<guid isPermaLink="false">35808@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;i found a cool plugin that does exactly what i needed:&#60;br /&#62;
&#60;a href=&#34;http://urbangiraffe.com/plugins/search-unleashed/&#34; rel=&#34;nofollow&#34;&#62;http://urbangiraffe.com/plugins/search-unleashed/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;it's also doing some other cool stuff like highligthing search words and many more.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>brouge on "portfolio search extension"</title>
			<link>http://www.kriesi.at/support/topic/portfolio-search-extension#post-35679</link>
			<pubDate>Wed, 21 Dec 2011 18:19:07 +0000</pubDate>
			<dc:creator>brouge</dc:creator>
			<guid isPermaLink="false">35679@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;a cool feature of the theme is that you can show the excerpt from a portfolio item underneath the item image.&#60;br /&#62;
how can i extend the search to also look in the post items excerpt?&#60;br /&#62;
right now i can only search the portfolio post item title but not the excerpt.&#60;br /&#62;
best regards
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
