Add LinkedIn page to dawn theme

Solved
jarydvisser
Excursionist
40 0 11

Hi, when adding social media icons to the footer of my store in the dawn theme, I can add most socials except for LinkedIn. I would like to add my LinkedIn page with the rest of my socials. Is there any way I can add my LinkedIn page anywhere to my store?

Accepted Solution (1)
premadestores
Shopify Partner
134 15 45

This is an accepted solution.

@jarydvisser 

Step 1 :  Go to Online Store->Theme->Edit code->Config->settings_schema.json -> find where social media icons has been placed , as shown in the attached file, then insert the given code there :

,
{
"type": "text",
"id": "social_linkedin_link",
"label": "Linked In",
"info": "https:\/\/linkedin.com\/shopify"
},

 

 you can find code as shown in the attached file.

premadestores_0-1645074928826.png

Step 2

Now create Snippet file , for this go to snippets folder -> click add new snippet - > name it icon-linkedin.liquid 

premadestores_2-1645075729824.png

and placed given code below in that file : 

 

<svg aria-hidden="true" focusable="false" role="presentation" class="icon icon-linkedin" viewBox="0 0 24 24"><path d="M4.98 3.5C4.98 4.881 3.87 6 2.5 6S.02 4.881.02 3.5C.02 2.12 1.13 1 2.5 1s2.48 1.12 2.48 2.5zM5 8H0v16h5V8zm7.982 0H8.014v16h4.969v-8.399c0-4.67 6.029-5.052 6.029 0V24H24V13.869c0-7.88-8.922-7.593-11.018-3.714V8z"/></svg>

 

Step 3: 

Now go to footer.liquid file and find code (press ctrl+F key and find section.settings.show_social) 

Now place given code just below there : 

 

{%- if settings.social_linkedin_link != blank -%}
<li class="list-social__item">
<a href="{{ settings.social_linkedin_link }}" class="link list-social__link" >
{%- render 'icon-linkedin' -%}
<span class="visually-hidden">{{ 'LinkedIn' | t }}</span>
</a>
</li>
{%- endif -%}

 

premadestores_1-1645075450856.png

 

Solution : 

this will show linkedin ICON LINK OPTION in customize as well show icon in footer like below in your dawn theme : 

premadestores_3-1645076017481.png

 

If this post is helpful for you Kindly Like and Accept this as a solution.

If you Want to modify or Customize your theme ,
Hire us | We can help you & guide you how to reach to your potential customers & how to increase brand presence, engagements and sales for your business
Email us: info@premadedropshippingstores.com or check premadedropshippingstores.com

View solution in original post

Replies 26 (26)