About product image…..:( - by HelloMorinig

This topic has 12 replies, 3 voices, and was last updated 5 years, 2 months ago ago by Rose Tyler

  • Avatar: HelloMorinig
    HelloMorinig
    Participant
    February 7, 2019 at 14:58

    Hello,

    Please, contact administrator
    for this information.
    11 Answers
    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    February 7, 2019 at 15:04

    Hello,

    1) Theme Options > Single Product page > Page Layout > Thumbnails > Disable
    OR
    Theme Options > Single Product page > Page Layout > Product gallery slider > Disable and Fixed product content > On.
    2) Theme Options > Shop > Products style > Image hover effect > Disable.

    Regards

    Avatar: HelloMorinig
    HelloMorinig
    Participant
    February 7, 2019 at 16:08

    Thank you for your replay.
    My explanation was not good.
    So I will explain it again.

    Please contact administrator
    for this information.
    Avatar: Olga Barlow
    Olga Barlow
    Support staff
    February 7, 2019 at 16:17

    Hello,

    You can hide the first thumbnail in the product gallery by custom CSS

    .thumbnails-list .thumbnail-item.slick-slide:first-child {
        display: none;
    }

    But keep in mind that then users won’t be able to click on A if they check the C. They will be able to check the A only by sliding the main slider https://gyazo.com/1330d3768efd5ff39bd257ab6d462599

    Regards

    Avatar: HelloMorinig
    HelloMorinig
    Participant
    February 7, 2019 at 17:20

    Thank you for your message.
    I put it in CSS. But there is no change.

    Best Regards,

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    February 7, 2019 at 17:28

    Please clear cache and check one more time.

    Regards

    Avatar: HelloMorinig
    HelloMorinig
    Participant
    February 7, 2019 at 17:39

    I cleared the cache. But there is no change.:(

    Avatar: Olga Barlow
    Olga Barlow
    Support staff
    February 7, 2019 at 18:06

    Hello,

    We have checked your site and it works https://gyazo.com/26f69a7fb9091cb71ac4360f6a26ebff
    Make sure that you cleared the browser cache or try incognito mode or another browser.

    Regards

    Avatar: HelloMorinig
    HelloMorinig
    Participant
    February 8, 2019 at 03:26

    Sorry for lack of explanation.:(

    Please contact administrator
    for this information.
    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    February 8, 2019 at 09:08

    Hello,

    This requests additional customization in files. Additional customization is not included in our basic support.
    You can try to add this code in functions.php of your child theme:

    add_filter('woocommerce_single_product_image_thumbnail_html', 'remove_featured_image', 10, 2);
    function remove_featured_image($html, $attachment_id ) {
        global $post, $product;
    
        $featured_image = get_post_thumbnail_id( $post->ID );
    
        if ( $attachment_id == $featured_image )
            $html = '';
    
        return $html;
    }

    if this is not what you are looking for, contact woocommerce support.

    Regards

    Avatar: HelloMorinig
    HelloMorinig
    Participant
    February 8, 2019 at 10:03

    I solved it. Thank you very much.:)

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    February 8, 2019 at 10:07

    That is great thank you for letting us know.

    Regards

  • Viewing 12 results - 1 through 12 (of 12 total)

The issue related to '‘About product image…..:(’' has been successfully resolved, and the topic is now closed for further responses

We're using our own and third-party cookies to improve your experience and our website. Keep on browsing to accept our cookie policy.