Removing social media icons from 1 specific page

Topic summary

A user seeks to remove social media icons from a specific Shopify page (grand-prairie-honda-on-boarding-gift). Three support representatives from different page builder apps (PageFly, GemPages, and Litos) provide similar CSS-based solutions.

Common approach across all responses:

  • Navigate to Online Store → Theme → Edit code
  • Locate the theme.liquid file
  • Insert custom CSS code before the closing </body> tag

Key differences:

  • PageFly suggests targeting .toolbar__content with display: none
  • GemPages and Litos recommend using conditional Liquid logic to check if page.handle contains or equals ‘grand-prairie-honda-on-boarding-gift’
  • All solutions include screenshots showing where to paste the code

The responses provide page-specific CSS hiding techniques rather than template-level modifications, allowing icons to remain on other pages. No follow-up from the original poster indicates whether any solution was implemented successfully.

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

Can anyone help me remove the social media icon links from the top right of this page? https://www.giftsmack.ca/pages/grand-prairie-honda-on-boarding-gift Thank you!

Hi @karling

This is Victor from PageFly - Landing Page Builder App

You can try this code by following these steps:

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file theme.liquid

Step 3: paste bellow code in tag → save.

{% if page.url == ‘/pages/grand-prairie-honda-on-boarding-gift’ %}

.toolbar__content { display: none !important; }

{% endif %}

Hope that my solution works for you.

Best regards,

Victor | PageFly

Hello @karling ,

You can follow these steps:

  1. Go to Online Store->Theme->Edit code

  1. Open your theme.liquid file, paste the below code before

{%  if page.handle contains 'grand-prairie-honda-on-boarding-gift'  %}
    
     {%  endif %}

I hope the above is useful to you.

Kind & Best regards,
GemPages Support Team

Hi @karling ,

Please go to Actions > Edit code > layout > theme.liquid file and add code here:

Code:

{%- if page.handle == 'grand-prairie-honda-on-boarding-gift' -%}
      
{%- endif -%}

Hope it helps!