I have created a custom social media link on the footer next to the Instagram icon (see screenshot).
and I would like to have this custom social media link on the mobile navigation menu as well, currently it only shows the instagram icon (see screenshot)
is there any way I could add the custom social media link here? Thanks!!
Here is the URL: https://cloudixhealth.com/
1 Like
Hey @matchyychin
Here are the steps to manually add the LINE link to your mobile menu:
- Go to your Shopify admin dashboard
- Navigate to “Online Store” > “Themes”
- Click the three dots (•••) next to “Customize” and select “Edit code”
- Look for the mobile menu template file. Search for files like:
- drawer-menu.liquid
- mobile-menu.liquid
- mobile-navigation.liquid
- Or look in the sections folder for similar files
- Once you find the file that contains the mobile menu code, search for “instagram” or “social” to locate where social icons are displayed
- When you find the Instagram code, it might look something like this:
{% if settings.social_instagram_link != blank %}
{% render 'icon-instagram' %}
{% endif %}
- Right after the Instagram code block, add a similar block for LINE
{% if settings.social_line_link != blank %}
{% render 'icon-line' %}
{% endif %}
- If your theme doesn’t have an icon-line SVG, you may need to create one:
- Find the snippets folder in your theme editor
- Create a new snippet called icon-line.liquid
- Add SVG code for a LINE icon:
Please give a try at your endand if you need any help, just send us your collaborator code via DM or email. We’ll gladly make the necessary changes for you for free. Looking forward to assisting you! 
Cheers,
Shreya