Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
How do I add Contact page next to policies in footer Dawn theme?
Hi @Jayboogie23
1. From the Admin page, go to Online Store > Themes
2. Select the theme you want to edit, click the three dots to edit code
3. Under the Section folder, open the footer.liquid
4. Then place the code below at the very bottom of the file and SAVE
5. After the {% endif %} around line 316, make a new line and add the code below.
NOTE: Replace the text your_contact_url to your right contact page link. Then SAVE
<li>
<small class="copyright__content"><a href="your_contact_url">Contact Us</a></small>
</li>
Check image for placement:
Result:
Please click 'Like' and mark it as 'Solution' if you find it helpful.
And if I need to add another page in that same footer after the contact page how do i do that? is it space then type your code again or?
If you mean adding another link. Yes, just create a line and paste the code I provided you