Beans and Woocommerce


Hi, I recently installed woocommerce onto a site of mine and a message came up saying I need to intergrate woocommerce with my theme. Everything seems to be working though? Do I still need to intergrate it?

Thanks


If everything works as expected you just need to add this:

// wooCommerce support
add_action( 'after_setup_theme', 'woocommerce_support' );
function woocommerce_support() {
    add_theme_support( 'woocommerce' );
}

this will remove the message.


Hey guys,

Neil answer is 100% correct. Since we are not doing particular support for WooCommerce, we don't declare it's support in the theme but a lot of site are using Beans with WooCommerce and no issue was reported other that this one.

Happy coding,

Write a reply

Login or register to write a reply, it's free!