Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #208924

    Dear support guru’s,

    We have added an image to our product-categories and subcategories. When you click a subgategory, the page shows the subcategory-image zoomed in, would it be possible to not show the image on this page?

    Kindest regards,

    Pim and Gonneke

    #208940

    Hey eric_peeters!

    Can you please post a link to the actual subcategory page? Please add this on your custom.css or Quick CSS:

    .tax-product_cat .page-thumb {
    display: none;
    }

    Best regards,
    Ismael

    #208946

    Hi Ismael,

    Thank you for your response! We have added the line to our quick CSS and the zoomed images are not showing anymore.
    However, we would like the to show in the main categories, is that possible? To only remove them from the subcategories as they are now, but still be visible for the main categories?

    Kind regards,
    Pim and Gonneke

    #208960

    Hey!

    Can you please post a link to the actual subcategory and category page?

    Cheers!
    Ismael

    #208962

    Hi Ismael,

    We would like only the images on this page: https://www.peetersduurzaam.nl/webshop-2/ to be visible in the zoomed in way on these pages:
    https://www.peetersduurzaam.nl/product-categorie/warmtepompen/
    https://www.peetersduurzaam.nl/product-categorie/zonnestroom/
    https://www.peetersduurzaam.nl/product-categorie/zonneboilers/

    All the other subcategorie-images are not showing anymore in the zoomed in way and that is perfect!

    Thank you again,

    Pim and Gonneke

    #208970

    Hey!

    If you want to show the page thumb on those pages, you can use this:

    .tax-product_cat.term-warmtepompen .page-thumb {
    display: block;
    }

    This is for the category page “warmtepompen”. You can do the same with the other category pages. Make sure you place it below the first code I posted above.

    Regards,
    Ismael

    #209138

    Hi Ismael,

    We have added these lines to our quick CSS:
    .tax-product_cat .page-thumb {
    display: none;
    }
    .tax-product_cat.term-warmtepompen .page-thumb {
    display: block;
    }
    .tax-product_cat.term-zonnestroom .page-thumb {
    display: block;
    }
    .tax-product_cat.term-zonnewarmte .page-thumb {
    display: block;
    }

    It is working perfectly for both Zonnestroom and Warmtepompen categories, however for Zonnewarmte it is not. The image does not show there, even though we cannot find a difference in the Quick CSS lines, compared with Zonnestroom and Warmtepompen. Do you know why it is working for only two out of three?

    Kind regards,

    Pim and Gonneke

    #209314

    Hey!

    Change that part of the code to this:

    .tax-product_cat.term-zonneboilers .page-thumb {
    display: block;
    }

    Cheers!
    Josue

    #209458

    Great! Thanks Josue!

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘Remove’ is closed to new replies.