New Landing How can we help? Atelier remove category text, and review rating under products

Viewing 8 posts - 1 through 8 (of 8 total)
  • Posted in: Atelier
  • #302615
    kodanska
    Member
    Post count: 36

    hello, is it possible to remove the category text and the review stars under the products, so its only the product text and price thats visible?

    See attached image where highlighted in yellow should be removed

    Attachments:
    You must be logged in to view attached files.
    #302845
    David Martin – Support
    Moderator
    Post count: 20834

    Please add this to Theme Options => Custom CSS:

    .home .products .product .product-details .posted_in, 
    .home .woocommerce ul.products li.product .star-rating {
        display: none;
    }
    #302873
    kodanska
    Member
    Post count: 36

    great works perfectly. How can i do the same for the shop page?

    #302996
    David Martin – Support
    Moderator
    Post count: 20834

    You can amend the CSS:

    .post-type-archive-product .products .product .product-details .posted_in, 
    .post-type-archive-product .woocommerce ul.products li.product .star-rating {
        display: none;
    }
    #303073
    kodanska
    Member
    Post count: 36

    great works, but now… its still on category pages 🙂

    basically i want to remove this site wide, is this possible or can you help me with CSS for category pages also?

    Thanks

    #303076
    David Martin – Support
    Moderator
    Post count: 20834

    You should of said sitewide initially!

    You can use:

    .products .product .product-details .posted_in, 
    .woocommerce ul.products li.product .star-rating {
        display: none !important;
    }
    #303090
    kodanska
    Member
    Post count: 36

    Works perfectly thanks!

    #303399
    David Martin – Support
    Moderator
    Post count: 20834

    Happy to help you.

Viewing 8 posts - 1 through 8 (of 8 total)

You must be logged in to reply to this topic.