Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #784855

    Hey!

    Allthough I found quite a lot of threads concerning problems with Gallery Images I wasn’t able to find a solution for my exact problem.

    The gallery images are displayed in the same size as the main product image. I’d like them to be shown underneath as thumbnails.

    I tried a workaround by installing the plugin “woo swipe”. After that the thumbnails where shown correctly but the main prduct image was displayed in thumbnail size.

    Any ideas on how to fix this issue?

    Thanks,
    max

    #784860

    Hey MaxBlank,

    Add the following to quick css:

    /* WooCommerce 3.0 Gallery */
    
    .woocommerce-product-gallery {
    position: relative;
    margin-bottom: 3em
    }
    
    .woocommerce-product-gallery figure {
    margin: 0
    }
    
    .woocommerce-product-gallery .woocommerce-product-gallery__image:nth-child(n+2) {
    width: 25%;
    display: inline-block
    }
    
    .woocommerce-product-gallery .flex-control-thumbs li {
    list-style: none;
    float: left;
    cursor: pointer
    }
    
    .woocommerce-product-gallery .flex-control-thumbs img {
    opacity: .5
    }
    
    .woocommerce-product-gallery .flex-control-thumbs img.flex-active,.woocommerce-product-gallery .flex-control-thumbs img:hover {
    opacity: 1
    }
    
    .woocommerce-product-gallery img {
    display: block
    }
    
    .woocommerce-product-gallery--columns-3 .flex-control-thumbs li {
    width: 33.3333%
    }
    
    .woocommerce-product-gallery--columns-4 .flex-control-thumbs li {
    width: 25%
    }
    
    .woocommerce-product-gallery--columns-5 .flex-control-thumbs li {
    width: 20%
    }
    
    .woocommerce-product-gallery__trigger {
    position: absolute;
    top: 1em;
    right: 1em;
    z-index: 99;
    }
    
    a.woocommerce-product-gallery__trigger {
    text-decoration: none;
    }
    
    .single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
    position: absolute;
    top: .875em;
    right: .875em;
    display: block;
    height: 2em;
    width: 2em;
    border-radius: 3px;
    z-index: 99;
    text-align: center;
    text-indent: -999px;
    overflow: hidden;
    }
    
    .single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
    background-color: #169fda;
    color: #ffffff;
    }
    
    .single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger:hover {
    background-color: #1781ae;
    border-color: #1781ae;
    color: #ffffff;
    }
    
    .single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger:before {
    font: normal normal normal 1em/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: block;
    content: "\f00e";
    line-height: 2;
    text-indent: 0;
    }

    Let me know if this works.

    Best regards,
    Jordan Shannon

    #784867

    Hey Jorday,

    thanks for the fast reply.

    It kinda helped. Now I have 4 small thumbnails of the gallery images underneath the main image.

    The problem remains, that i can’t set the quantity of those thumbnails as i should be able to in the woocommerce menu.

    cheers,
    max

    • This reply was modified 7 years, 7 months ago by MaxBlank.
    #784948

    Hi,
    You mean the option is not available at all?

    Best regards,
    Jordan Shannon

    #785008

    Hey Jordan,

    the option is available as shown on the screenshot.

    If I change the settings, there’s no effect though.

    cheers,
    max

    #785821

    Hi,

    I see. Apologies for the further delay on this, but I will ask some of my team members if they have additional ideas.

    Best regards,
    Jordan Shannon

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.