Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #467654

    I’m using the WooCommerce plugin, but don’t require any e-commerce features. So I’m just using it to group/display products right now.

    When I set-up a product grid there are two links/icons under each product thumbnail – “Read More” and “Show Details”. I don’t need both and would like to get rid of the “Read More” link/shopping cart icon, but can only hide everything. If someone could help me hide just the one link/icon, that would be great.

    #468137

    Hey NicomIT!

    Do you mean the add to cart button? Add this to your custom CSS to remove it.

    .avia_cart_buttons .add_to_cart_button {
      display: none !important;
    }

    Cheers!
    Elliott

    #468174

    The button doesn’t actually say “Add to Cart”. It says “Read More” and has a cart icon beside it. Directly under it is another icon and text that reads “Show Details”. I’d like to keep the second “Show Details” text/icon, but not the “Read More” text/icon that has the cart. You can see what I’m talking about on page linked in the private content with this reply.

    I did try the code you provided, but didn’t have any luck. However this code did hide everything:

    .avia_cart_buttons {
    	display: none;
    } 
    #468360

    Hi!

    I’m not sure if you solved the problem or? Please let us know if you should need any more help.

    Regards,
    Rikard

    #468948

    Hi Rikard,
    Unfortunately I’m still unable to remove the specific link/icon mentioned in my last post. Any help with that you can provide would be great. If it’s not clear what I’m referring to when you view the page, just let me know.

    Thanks!

    #468954

    Hi!

    Please add following code to Quick CSS

    .avia_cart_buttons .product_type_simple {
      display: none!important;
    }

    Regards,
    Yigit

    #468963

    That worked great. Thanks Yigit!

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Remove WooCommerce Read More & Cart Icon’ is closed to new replies.