Removing social media icons from 1 specific page

Removing social media icons from 1 specific page

karling
Tourist
9 0 2

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!

Replies 3 (3)

PageFly-Victor
Shopify Partner
7865 1786 3131

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 </body> -> save.

PageFlyVictor_0-1677206222884.png

 

 

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

<style>

.toolbar__content {

    display: none !important;

}

</style>

{% endif %}

 

Hope that my solution works for you.

Best regards,

Victor | PageFly

GemPages
Shopify Partner
5625 1262 1279

Hello @karling ,

 

You can follow these steps: 
1. Go to Online Store->Theme->Edit code

GemPages_0-1677209294696.png

2. Open your theme.liquid file, paste the below code before </body>

GemPages_1-1677209311249.png

  {%  if page.handle contains 'grand-prairie-honda-on-boarding-gift'  %}
    <style>
      [data-section-id="header"] .toolbar {
          display: none !important;
      }
    </style>
     {%  endif %}

I hope the above is useful to you.


Kind & Best regards, 
GemPages Support Team

GemPages - Build any high-converting store pages for any business


- If you find my reply helpful, please hit Like and Mark as Solution
- Get connected: App Store | Blog | Community | Help Center

Litos
Globetrotter
688 169 150

Hi @karling,

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

Screenshot.png

Code:

{%- if page.handle == 'grand-prairie-honda-on-boarding-gift' -%}
      <style>
        .toolbar__social {
          display: none !important;
        }
      </style>
{%- endif -%}

Hope it helps!

Litos - Shopify Development Service Provider
Need to develop or customize your Shopify store, feel free to contact us here.