Remove "X" icon from the social media share icons on the Product Page / Fashionopolism Theme

Topic summary

A user needed to remove the X (formerly Twitter) share icon from product pages on their Shopify store using the Fashionopolism theme.

Solution provided:

  • Navigate to Shopify admin → Online Store → Themes → Actions → Edit code
  • Open the CSS file (base.css, style.css, or theme.css) in the Assets folder
  • Add the following CSS code at the bottom:
a.twitter.product__share-icon {
    display: none;
}
  • Save the changes

Status: Resolved. The user confirmed the solution worked perfectly.

Summarized with AI on November 1. AI used: claude-sonnet-4-5-20250929.

Hello,

I want to remove the X (formerly Twitter) icon from the social media “share” section on my product pages but can’t seem to figure it out. I’m using the Fashionopolism theme and my web site is www.shopblacksalt.com

Thank you for your help!

Taylor

1 Like

Hi @shopblacksalt

Try this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
a.twitter.product__share-icon {
    display: none;
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

1 Like

Thank you so much for your help! That worked perfectly. :slightly_smiling_face: