Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #260652

    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.

    #260667

    Hey rossmk!

    I do not have access to the plugin files but I contacted WooThemes and we’ll look into it.

    Cheers!
    Peter

    #260790

    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

    #261018

    Hi Peter,

    It works perfectly. Many thanks for your help.

    Kind regards,

    Ross.

    #261220

    Hey!

    Great :)

    Best regards,
    Peter

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.