I would like to add titles to my various Footer Menus but I don't know how to change the code. My store address is www.deasuraswimwear.com
Below is what I currently see on my site and the following is what I want:
change to:
Solved! Go to the solution
Hello,
Thank you for your question.
Please share your store URL, page URL and also password (if your store has one), I'll help you out to the best of my ability.
Kind regards,
Diego
My store URL is www.deasuraswimwear.com, but I have to share my password here? everyone will know my password.
@Averyyip
Send me via private message, please.
This is an accepted solution.
Thank you for the password, @Averyyip .
Upon analysis, it would require Liquid/CSS/Javascript knowledge to implement this feature, I'm afraid that unfortunately there is no simple copy-paste solution otherwise I'd happily guide you through.
In case you're unfamiliar with these technologies you'll likely want to hire a Shopify developer to assist you.
Kind regards,
Diego
<p class="h5">
{{ linklists[section.settings.footer_link_list].title }}
</p>
put this code in footer.liquid file in between
{% if linklists[section.settings.footer_link_list].links.size > 0 %}
<div class="grid__item {{ footer_column_width }}">
<p class="h5">
{{ linklists[section.settings.footer_link_list].title }}
</p>
<ul class="no-bullets site-footer__linklist">
{% for link in linklists[section.settings.footer_link_list].links %}
{% comment %}
Create a second column
{% endcomment %}
{% if extra_footer_linklist_column and forloop.index == footer_linklist_split %}
</ul>
</div>
<div class="grid__item {{ footer_column_width }}">
<h4 class="site-footer__linklist">{{ linklists[block.settings.link_list].title }}</h4>
<ul class="no-bullets site-footer__linklist">
{% endif %}
<li><a href="{{ link.url }}">{{ link.title }}</a></li>
{% endfor %}
</ul>
</div>
{% endif %}
User | Count |
---|---|
25 | |
23 | |
22 | |
19 | |
13 |