I am using Woocommerce with Enfold. Love the theme – really clean.
I am using one of Woocommerce’s plugins – bundles. In the shop, for some reason the “Show Details” rollover does not show for bundled products, but for simple products this “button” is shown. I have contacted Woocommerce support, but they think it is a theme issue, which I tend to agree with having swapped themes temporarily.
I have searched your forum, but can’t find any solution, so I hope this question isn’t repeating someone else’s question and I just haven’t searched thoroughly enough!!
Many thanks in advance.
Hey rossmk!
I do not have access to the plugin files but I contacted WooThemes and we’ll look into it.
Cheers!
Peter
Hi!
Ok, I checked the code and I think I found the cause of the problem. Try to replace this code in wp-content\themes\enfold\config-woocommerce\config.php:
if($product->product_type == 'simple' || $product->product_type == 'subscription')
with
if(in_array($product->product_type, array('subscription', 'simple', 'bundle')))
If it works for you we’ll include this patch into the next update.
Best regards,
Peter
Hi Peter,
It works perfectly. Many thanks for your help.
Kind regards,
Ross.
Hey!
Great :)
Best regards,
Peter