Enable debug mode and check for errors
http://codex.wordpress.org/Debugging_in_WordPress
Try with a different theme
Try increasing memory limit in wp-config.php
define('WP_MEMORY_LIMIT', '128M');
One possibility is that WooCommerce did not fully install. Try deleting the plugin and reinstall from a fresh download.
What theme and version of it are you using? Some themes come with WooCommerce support, and if your theme is supporting the wrong WooCommerce version that might explain the problem.
Themes with WooCommerce support are sometimes updated when a new WooCommerce version comes out, so make sure you have the latest version of your theme. Take a backup before updating.
Please post the url to your site.
Hi guys,
thanks for your quick response.
My website address is: http://www.operationexcel.com
Your front page is blank, presumably because you have activated WooCommerce. Please deactivate it so we can see the site.
What was the outcome of the suggestions from safeer and me?
Hello Lorro,
I’ve deactivated WooCommerce now so my site frontend should be showing now.
http://www.operationexcel.com
Can you also guide me on how to debug my site?
Thanks.
I can see your front page, thank you.
Your theme is The7 version 3.3.1 but the current version is 4.4.5. See the changelog. There are many fixes in the later version, including compatibility with later WordPress and WooCommerce versions of which you have the latest. Hopefully one of the fixes will be for your problem.
Consider updating your theme as the next step. Best to take a backup first. Updating can bring its own problems. Consider asking The7 support whether there is a recommended way of doing it, or a guide, especially as you would be going from 3.x to 4.x. For example, you may need your original purchase code to authorise the update.
http://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590
If you don’t update your theme you would have to wind back WP and WC to the versions which were current when 3.3.1 was released to get it all to work in harmony. However, winding back is definitely not a good idea.
There are further debug steps if updating your theme does not resolve the problem.
Thanks a ton guys.
Lorro, you’re right, it was a problem with my theme.
The problem is fixed.
All I did was to include this script below in my functions.php of my theme:
add_action( ‘after_setup_theme’, ‘woocommerce_support’ );
function woocommerce_support() {
add_theme_support( ‘woocommerce’ );
}