This thread is over two years old and may be outdated. Please create a new thread if you need help, or email us if you have an active Premium license.

Replies

2
  1. Andrew Misplon Staff 11 years, 10 months ago

    Hi Andreas

    We can assist with the first solution listed here: http://docs.woothemes.com/document/third-party-custom-theme-compatibility/.

    Create a child theme for Origami: https://codex.wordpress.org/Child_Themes. The style.css file in your child theme should look as follows:

    /*
     Theme Name:   Origami Child
     Author:       SiteOrgin
     Template:     vantage
     Version:      1.0.0
    */
    @import url("../origami/style.css");

    Take page.php out of your Origami parent theme and place it in your child theme.

    On line 7 you’ll see:

    <?php the_content() ?>

    Replace that line with:

    <?php woocommerce_content(); ?>

    Finally, delete line 11:

    <?php if(is_singular()) comments_template(); ?>
  2. Andrew Misplon Staff 11 years, 10 months ago

    And finally re-name page.php in your child theme to woocommerce.php.

Replies on this thread are closed.

Please create a new thread if you have a question, or purchase a SiteOrigin Premium license if you need one-on-one email support.

Have a different question or issue?

Start New Thread