• Hi. I wonder if you’ll make the theme compatible with Woocommerce? As it is now, it is not possible to integrate Woocommerce into the theme

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author nobita

    (@nobita)

    Hi @johnjohn1963

    compatible with Woocommerce

    Since I have no requests from users, I have not been supporting woocommerce so far.

    Do you wish Raindrops theme should support the woocommerce plugin?

    If you want your current theme to correspond quickly to woocommerce, you can respond quickly with simple customization.

    Copy page.php and create template woocommerce.php

    functions.php add action hook

    
    
    add_action( 'after_setup_theme', 'woocommerce_support' );
    function woocommerce_support() {
        add_theme_support( 'woocommerce' );
    }
    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>';
    }
    add_theme_support( 'post-thumbnails', array( 'product' ) );
    

    woocommerce will be able to work

    Do you wish Raindrops theme should support the woocommerce plugin?

    Thank you.

    Theme Author nobita

    (@nobita)

    Sorry, the information seems to be old.
    Without customization, woocommerce could be used.

    woocommerce 3.3.5

    Thank you

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Woocommerce’ is closed to new replies.