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.