Title: Make compatible with Woocommerce
Last modified: August 30, 2016

---

# Make compatible with Woocommerce

 *  Resolved [Ashmita183](https://wordpress.org/support/users/ashmita183/)
 * (@ashmita183)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/make-compatible-with-woocommerce/)
 * The evolve theme doesn’t seem to support woocommerce I realized.
 * There is documentation available on Woocommerce’s official page as to how to 
   make a non-WC theme compatible. However, it involves changing a ‘page.php’ file
   in theme folder.
    I can’t find any such file ! Is it not there in this theme 
   or am I missing something?
 * Please help!

Viewing 3 replies - 1 through 3 (of 3 total)

 *  [dimkost](https://wordpress.org/support/users/dimkost/)
 * (@dimkost)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/make-compatible-with-woocommerce/#post-6250675)
 * There is a very helpfull video on youtube which explains how to do this step 
   by step..
    page.php = bbpress.php file of your theme
 *  Thread Starter [Ashmita183](https://wordpress.org/support/users/ashmita183/)
 * (@ashmita183)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/make-compatible-with-woocommerce/#post-6250742)
 * Thanks a lot ! 😀
 *  [babyblu](https://wordpress.org/support/users/babyblu/)
 * (@babyblu)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/make-compatible-with-woocommerce/#post-6250830)
 * I am setting up parament to work with woocommerce, and got this error message“
   Your theme does not declare WooCommerce support” and indeed the sidebar moved
   to the bottom cos of this problem. I followed the documentation on how to integrate
   woocommerce with parament, and I did everything and for a while everything came
   back into position. But before a couple hours it was all broken again.
 * Here’s the code:
 * remove_action( ‘woocommerce_before_main_content’, ‘woocommerce_output_content_wrapper’,
   10);
    remove_action( ‘woocommerce_after_main_content’, ‘woocommerce_output_content_wrapper_end’,
   10);
 * add_action(‘woocommerce_before_main_content’, ‘my_theme_wrapper_start’, 10);
   
   add_action(‘woocommerce_after_main_content’, ‘my_theme_wrapper_end’, 10);
 * function my_theme_wrapper_start() {
    echo ‘<section id=”main”>’; }
 * function my_theme_wrapper_end() {
    echo ‘</section>’; }
 * Maybe I didn’t tweak this right for my parament theme, but what can I do now?
 * Thanks in advance for help!

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Make compatible with Woocommerce’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/evolve/4.3.7/screenshot.png)
 * evolve
 * [Support Threads](https://wordpress.org/support/theme/evolve/)
 * [Active Topics](https://wordpress.org/support/theme/evolve/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/evolve/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/evolve/reviews/)

## Tags

 * [compatible](https://wordpress.org/support/topic-tag/compatible/)
 * [page.php](https://wordpress.org/support/topic-tag/page-php/)

 * 3 replies
 * 3 participants
 * Last reply from: [babyblu](https://wordpress.org/support/users/babyblu/)
 * Last activity: [10 years, 2 months ago](https://wordpress.org/support/topic/make-compatible-with-woocommerce/#post-6250830)
 * Status: resolved