• Resolved nootkan

    (@nootkan)


    Just installed woo commerce and got this message in the dashboard:

    Your theme does not declare WooCommerce support – Please read our integration guide or check out our Storefront theme which is totally free to download and designed specifically for use with WooCommerce.

    I thought that access press lite was compatible with woo commerce? At least that is what your promotion states anyway. What do I have to declare to make it compatible?

Viewing 3 replies - 1 through 3 (of 3 total)
  • I need help can you please
    I am unable to display header image in mobile view my website is https://www.spandann.org

    Theme Author Access Keys

    (@access-keys)

    Hi There,
    Sorry for the delay reply,
    Nootkan=>
    please follow this documentation to declare compatibility with the woo commerce
    https://docs.woothemes.com/document/declare-woocommerce-support-in-third-party-theme/
    Add the code at the end of functions.php

    Vaibahav=>
    We have check your site in our device it’s working fine.It’s seems like you have solve by your own.
    Thanks.

    Thread Starter nootkan

    (@nootkan)

    Thanks for your reply, Sorry to open this again but I’ve decided to try and resolve this.

    So far I am able to create products, categories etc but they’re not showing up on the shop page.

    I’ve added the following to my child theme functions page:

    /**
    * Woo Commerce Declaration
    */
    add_action( ‘after_setup_theme’, ‘woocommerce_support’ );
    function woocommerce_support() {
    add_theme_support( ‘woocommerce’ );
    }
    /**
    * Implement Woocommerce hooks.
    */
    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>’;
    }

    What am I missing?

    • This reply was modified 8 years, 6 months ago by nootkan. Reason: not resolved
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Not Compatible with Woocommerce’ is closed to new replies.