Can someone who is experienced with Wordpress and Woocommerce please help me?

KawaiiChonie

Newbie
Joined
Aug 14, 2015
Messages
8
Reaction score
1
Hi there, I'm having a Wordpress/Woocommerce problem and was wondering if there is anyone who can help.

So I've been working on a client's website for the past 3 weeks and am having trouble solving a problem that was already present on the site before I began the re-design.

The issue:
Everything on the site seems to be working fine, except the single product pages keep showing up blank. From my wp-admin account, everything is just fine. Even when I'm logged out, about 5% of the time they load correctly, but most of the time they load up blank.

I've tried about everything from disabling plugins, resetting permalinks, etc. besides accessing the php files and other files in the back-end (still waiting for their GoDaddy login).

Has anyone ever had a problem like this when working on a Wordpress Woocommerce site?


I know I probably should have focused on fixing that problem from the start, but I guess I was too eager to get going on the website that I figured it could wait. Now I've finished the re-design for the most part and am worried that I might have to start all over again.
 
Which theme are you using, try reinstalling woocommerce
 
check if you've got a bug or something in that page, once i had a typo when adjusting the theme code and the page just shows up blank when it can't load properly
 
Put this in your wp-config, because guessing what's wrong, is waste of time.
PHP:
error_reporting(E_ALL);
ini_set('display_errors', 1);
define( 'WP_DEBUG', true);
 
Back
Top