How can I remove social links and newsletter feature from my homepage?

Topic summary

A Shopify novice seeks help removing social media links and newsletter features from their homepage footer.

Solutions Provided:

Social Media Links Removal:

  • Navigate to Online Store → Themes → Customize → Theme Settings → Social Media
  • Delete all social media URLs from the settings
  • Alternatively, hide the footer block using the eye icon in the content editor

Newsletter Feature Removal:

  • Access the footer section in theme customization and uncheck or hide the newsletter block

Additional Request:

The user later asks about hiding product prices from their catalog page. The recommended solution involves:

  • Editing the theme code via Online Store → Themes → Actions → Edit Code
  • Locating the style.css file under Assets
  • Adding display: none; to the .details.price CSS class

Screenshots and code snippets were provided to guide the implementation. The user can contact support via direct message for further customization assistance.

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

Novice at Shopify here and cannot for the life of me find where to remove the “Follow me” links at the bottom of my website hatborrower.com i dont have pinterest or youtube .. also need to remove the newsletter feature and have clicked everywhere and cannot find it. Any help would be appreciated.

Thank you

joanne

Hi @HatBorrower

  1. Remove “Follow me”

May I suggest to update code these steps:

1.1. Go to Store Online-> theme → customize

1.2. Theme settings → SOCIAL MEDIA → remove all links here

  1. Remove newsletter featured

May I suggest to update code these steps:

1.1. Go to Store Online-> theme → customize

1.2. For content → click eye icon to hide this block or uncheck option in the footer

1 Like

Hey @HatBorrower ,

You can go to the theme customization>footer and remove them from there.

Thanks,

EcomRAZ

Thank you so much!

Secondly … is there a way to remove pricing from my featured products? It
won’t let me leave it as £0.00. Thank you!!!

Hey @HatBorrower ,

Don’t see any featured products on your website? Can you share image or link?

All of my products are the hats listed and each one has a price listed but
I don’t want to show the price at all.

https://www.hatborrower.com/collections/fullcatalogue

Go to online store>Themes>Actions>Edit Code and find the file style.css under Assets. Find the class shown below and add a display code line. It will hide the prices.

.details .price {
    color: #070000;
    display: none;
}

If you have any other queries, You can send us a DM.

Thanks,

EcomRAZ

1 Like