Please submit a private ticket if you need to share sensitive information, such as license details and admin credentials.

Okay
  Public Ticket #2619519
thumbnails too small
Closed

Comments

  • Thoro started the conversation

    the thumbnails on my simple bundles are so small.  My customers have to click on each product just to see a decent picture. can you send me instructions on how to make them larger please. thank you 


    example page. small thumbnail bundle page, I need the pics 2-5 times larger

  •  767
    Janilyn replied

    Hi Thoro,

    Thank you for contacting WPClever Support Forum. 

    We’ve received your ticket and assigned one of our developers to help you with that. 

    He’ll be looking into your question and responding with specific instructions as soon as possible. 

    Please stay patient as we're having very heavy workloads, it might take some time for our developers to reach back.

    Best regards.

    Janilyn T. - WPClever Support Agent

  •  153
    Henry replied

    You can add this css to "Additional CSS":

    @media only screen and (min-width : 1025px) {
    .woosb-products .woosb-product .woosb-thumb {
        width: 110px;
    }
    .woosb-products .woosb-product .woosb-thumb img {
        width: 100px;
        max-width: 100px;
    }
    }


    Best regards,
    Henry N.

  • Thoro replied

    Thank you that worked.  However my pics are not centered and they are all chopped off.

    https://survivalismmarket.com/product/fire-wood-pac-ultimate/

    how do I now get the whole pic in the new pixel parameters?


    thanks 

  •  153
    Henry replied

    Hi Thoro,

    You can add this code to function.php

    add_filter("woosb_item_thumbnail","change_woosb_item_thumbnail",10,2);
    function change_woosb_item_thumbnail($img,$_product){
        return $_product->get_image("full");
    }

    Best regards,
    Henry N.

  • Thoro replied

    forgive me but I where is function.php. I just added this to the additional css and it did not work 

  •  153
    Henry replied

    Hi Thoro,

    Please add it to the function.php file in the theme you are using. This is not css code so you cannot add in additional css.

    Best regards,
    Henry N.