• Duplicate pics
    No Thumbnails showing
    Blurry
    Updated Pic won’t change/update
    Topics on Shop page

    ourcarebooks.com

    https://www.ads-software.com/support/topic/duplicate-product-pics-showing?replies=5#post-7391093

    I have asked several help questions and received No reply so I will rate this.

    Themes should work. When I fix someone’s acctg. it’s fixed. Clients don’t need to spend 100s of hours learning acctg and taxes–that’s what I do. My finished product is complete and if they have questions I reply/explain Immediately.

    A nice woman on Support replied (see link above) that it’s your Theme that’s preventing SHOP pics from working.

    I changed my Review. Is good.

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

    (@nobita)

    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

    Thank you.

    Theme Author nobita

    (@nobita)

    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.

    Thread Starter newbie357

    (@newbie357)

    Hi Nobita,

    I understand now that not woocommerce and choose another theme.

    I would like to delete this entire rating. Please ignore since wp won’t let us delete our posts.

    Theme Author nobita

    (@nobita)

    not worry

    Please enjoy WordPress

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Raindrops Shop page does Not work-’ is closed to new replies.