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]

If you are getting the message. "Your Theme Does Not Declare WooCommerce Support" please follow the instructions below. 


Find Your Theme

You need to know where your them is located and what one you are using. To do that log into your dashboard. Scroll down to where it says appearance. Then click on themes. There you will be able to see the theme that you are using.

Log Into Server Via SSH or FTP

The next step is to log into your server where you can manage files. I am going to mainly show you the SSH way of doing things since it is much faster and more secure. However you can do these steps with a FTP program or in a file manager. If you have cPanel log into your server via SSH with your cPanel username and password. NOTE: Make sure you are NOT logged in as root!
ssh username@ipaddresss
Navigate to where your wordpress files are. We want to see the directory wp-content. After you open wp-content you will see a folder called "themes".  Go into that directory and you will see your theme folder. Go into your theme folder.

Shortcut Commands For Terminal

cd wp-content/themes
ls

Copy page.php to woocommerce.php

Now what we want to do is make a copy of page.php only we want to name it woocommerce.php. So you will still have the page.php file. You are just making a copy of it so we can edit it for the woocommerce system. So enter the following into your terminal.
cp page.php woocommerce.php

Edit the Woocommerce.php File

Now we want to edit the woocommerce.php file. So type in the following into your terminal.
nano woocommerce.php
Look for the loop. The loop start with something like this.
<?php if ( have_posts() ) :
The lopp will end with something like this.
<?php endif; ?>
Delete those lines and everything in between them. To delete lines in terminal use "Control K" on the keyboard. Now in that spot put the following code.
<?php woocommerce_content(); ?>

Declare WooCommerce Support

When you are all done with that you want to declare woocommerce support in your functions.php file. So type in the following into your terminal.
add_action( 'after_setup_theme', 'woocommerce_support' );
function woocommerce_support() {
 add_theme_support( 'woocommerce' );
}
Now check your page. You are now declaring woocommerce support.:-)