I have asked several help questions and received No reply so I will rate this.
You are self closed a question.
https://www.ads-software.com/support/topic/horizontal-menu-is-now-vertical?replies=2
https://www.ads-software.com/support/topic/how-to-get-left-side-bar-to-show?replies=2
https://www.ads-software.com/support/topic/how-to-shorten-header-pic-please?replies=3
and your questions no exists WooCommerce question.
Raindrops Theme not support WooCommerce yet
The following message should appear when you install the plug-in
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.
No Thumbnails showing
I’m declare WooComerce Settings and test it.
1.create woocomerce.php ( page.php copied and rename )
2. add fuctions.php following code.
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>';
}
We were able to reproduce your pointed out problem
Product Image meta box is not showing.
FOR FIXED THE ISSUE for me
add add_theme_support( 'post-thumbnails', array( 'product' ) );
add_action( 'after_setup_theme', 'woocommerce_support' );
function woocommerce_support() {
add_theme_support( 'woocommerce' );
add_theme_support( 'post-thumbnails', array( 'product' ) );
}
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>';
}
The theme developer has defined a function called ‘raindrops_fallback_title’
Is it causing this problem, if you are determined that the thing due to the influence of the above functions, I think it is a mistake.
This function can be less, it will not be involved in the display of the meta box
My Result of Test
https://www.tenman.info/wp3/manualraindrops/files/woo.jpg
Thank you.