Hey everybody I want to let you know that I have undertaken the grueling task of getting the heck away from WordPress. I was so sick of the problems and updates I had to do all the time. I am now using my ezbloo system and I am integrating all my old posts into the new system. It sucks, but in the end, I will save bundles of time. I needed to keep things simple and that is why I created ezbloo. I'll have more on this later for you guys after I am done with the total integration of my old posts here. So if you are looking for a post and need it faster, shoot me an email and I will make it a priority. [email protected]

Does it seem like lightbox is broken after upgrading to Woocommerce 3.0. This is because the latest versions of Woocommerce does not automatically encode Lightbox support functions. It is recommended to use a theme that declares Woocommerce support to get the Lightbox functions. If you are using a theme that is not Woocomerce compatible you can still implement these features. Do this by having your web developer add the Woocommerce support functions to your themes functions file. If you are managing your own file system then you can add the needed actions yourself.

How To Fix Lightbox

Previous versions of Woocommerce had an option to enable the Light box gallery in the Woocommerce settings. It is found under Woocommerce --> Settings --> Products --> Display. If you go to this section and do not see this option it could be that you are using a theme that does not declare Woocommerce support. If this is the case you can open your functions.php file in your active theme and edit the following lines ("your_theme_setup" will actually be the name of your theme processor):
add_action( 'after_setup_theme', 'your_theme_setup' );

function your_theme_setup() {
add_theme_support( 'wc-product-gallery-zoom' );
add_theme_support( 'wc-product-gallery-lightbox' );
add_theme_support( 'wc-product-gallery-slider' );
}