skip to Main Content

Within WooCommerce, in BeTheme theme, I couldn’t remove the permalink icon from my features products and images.

enter image description here

With CSS, is there a way to not display the transparent icons that come up on product image permalinks?

Is there any solution for that?

My website link: https://hawky.ma/

2

Answers


  1. Yes it’s probably a ::before or ::after pseudo-element. What’s the link, I can take a look and send you a code

    Login or Signup to reply.
  2. To hide the icon link you can use the following CSS rule:

    li.product div.image_links { 
        display:none !important; 
    }
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search