• Hello,

    I’m having trouble integrating Woocommerce into the Bones theme.

    Situation can be found at: https://www.kaffee-aus-holland.de/home/

    As you can see, the page called “shop” does not accept the layout applied to the other pages. I tried the following, found at https://docs.woothemes.com/document/third-party-custom-theme-compatibility/:

    1. Adding woocommerce.php to the theme, replacing the_loop with <?php woocommerce_content(); ?>
    This alligns the product in the shop to the left, but doesn’t apply layout.

    2. Using hooks in functions.php:
    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’, ‘instyle_wrapper_start’, 10);
    add_action(‘woocommerce_after_main_content’, ‘instyle_wrapper_end’, 10);
    function instyle_wrapper_start() {
    echo ‘

    ‘;
    }
    function instyle_wrapper_end() {
    echo ‘
    ‘;
    }

    Both options, even after lots and lots of tweaks and try-outs did not work out. Please let me know if you have any idea on how to approach this problem.

    All the best!

  • The topic ‘[Plugin: Woocommerce] Integration problem’ is closed to new replies.