Okay
  Public Ticket #1462005
Hide "Chose alternative" button
Closed

Comments

  •  5
    jonybigude started the conversation

    Hi! Please take a look at the attached image. How do I do in order to hide that button? It's enough that customers click on the product image or on the product name. I do know how to do it with CSS, but I suspect I could do it in a nicer and cleaner way by not having the button being load at all.


    Thanks in advance!

  •  1,560
    Laborator replied

    Hi there,

    Adding the following CSS to Custom CSS will remove the add to cart button:

    .woocommerce .shop-item .item-info a[data-product_id]:after {
        display: none;
    }
    

    Best regards,
    Laborator Team


      Documentation         Join Kalium Users Group

  •  5
    jonybigude replied

    Thanks!