Hello,
I want to remove My footer title - “SHOP” on mobile , but other titles should be left and on the DESKTOP do not need removing.
Where is a button of do not show heading but it hides all the titles.
Here is the code of footer meniu.
{%- if linklists[block.settings.menu].links.size > 0 -%}
{%- if block.settings.show_footer_title -%}
<p class="h4 footer__title small--hide ">
{{ linklists[block.settings.menu].title }}
</p>
<button
type="button"
class="h4 footer__title collapsible-trigger collapsible-trigger-btn medium-up--hide"
aria-controls="Footer-{{ block.id }}"
>
{{ linklists[block.settings.menu].title }}
{%- render 'collapsible-icons' -%}
</button>
{%- endif -%}
<div
{% if block.settings.show_footer_title %}
id="Footer-{{ block.id }}" class="collapsible-content collapsible-content--small"
{% endif %}
>
<div class="collapsible-content__inner">
<div class="footer__collapsible {% unless block.settings.show_footer_title=="SHOP" %} {% endunless %}">
<ul class="no-bullets site-footer__linklist">
{%- for link in linklists[block.settings.menu].links -%}
<li>
<a href="{{ link.url }}">{{ link.title }}</a>
</li>
{%- endfor -%}
</ul>
</div>
</div>
</div>
{%- endif -%}







