Re: Make featured collection title link

How can I add a hyperlink to collection headings on my main page?

BffPy
Visitor
2 0 1

Hi,

I want to add an hyperlink to the headings of the collections in my main page. Can someone help me?

 

I have tried adding the following to my products-slider.liquid section but it doesn't work. Thanks!!

 

<div class="index-section">
{%- if section.settings.show_title -%}

<a href="/collections/{{collections[featured].handle}}"></a> AND <a href="{{ collections[featured].url }}"></a>

<h2 class="section-header__title">
{%- for block in section.blocks -%}
{{ collections[block.settings.collection].title }}
{%- endfor -%}
</h2>
{%- endif -%}

 

My webpage is backyardfresh.sg 

 

Thanks! 

Replies 5 (5)

Be_Steven
Shopify Partner
142 28 41

It should be:

<div class="index-section">
{%- if section.settings.show_title -%}
<h2 class="section-header__title">
{%- for block in section.blocks -%}
<a href="{{ collections[block.settings.collection].url }}">{{ collections[block.settings.collection].title }}</a>
{%- endfor -%}
</h2>
{%- endif -%}
Was my reply helpful? Please Like and ✔️ Accept Solution. This mean alot to me.
I'm looking for a remote job. Please contact me via besteven0912@gmail.com
BffPy
Visitor
2 0 1

Thank you!! It works 🙂 

VariousQuestion
Tourist
16 0 2

I tried it and it didn't work.  Just links to main page.

Be_Steven
Shopify Partner
142 28 41

My answer is only suit for the specific case above.
If you have issue with it, you can send the site link or piece of code and I will help 🙂 

Was my reply helpful? Please Like and ✔️ Accept Solution. This mean alot to me.
I'm looking for a remote job. Please contact me via besteven0912@gmail.com
joelb1
Visitor
1 0 0

Hey there,

I have bundlefactory.com. We have the collections Hot Buys and Weekly Best Sellers on our homepage. I want to link those headings to their respective collections. How would I do this? I'm using Area 1.4.1.

Thank you.