Have your say in Community Polls: What was/is your greatest motivation to start your own business?

Re: How To Add "Read More" Button To Collection Description In The Impact Theme

How To Add "Read More" Button To Collection Description In The Impact Theme

mcrofbre1010
New Member
4 0 0

Hello,

 

I would like to add "Read More" to the description of the collection. 

 

For example: https://www.mountainwarehouse.com/travel/accessories/microfibre-towels/

 

Is there anyone who can help me with this?

 

i am on impact theme

Replies 5 (5)
mcrofbre1010
New Member
4 0 0

It is the "Read More" button circled in blue

 

Screenshot 2024-01-08 122031.png

mdi47
Shopify Partner
12 1 2

You need to create a new section, so you can dynamically add it to the collection page. Just create a file named "collection-info.liquid" in your section folder.

 

<div class="details-container">
  {% if collection.description != blank %}
    <details>
      <summary>{{ section.settings.readmore }}</summary>
      <p>
        {{ collection.description }}
      </p>
    </details>
  {% endif %}
</div>

{% schema %}
{
  "name": "Collection Info",
  "settings": [
    {
      "type": "text",
      "id": "readmore",
      "label": "Button Text",
      "default": "Read More"
    }
  ],
  "presets": [
    {
      "name": "Collection Info",
      "category": "Collection Info"
    }
  ]
}
{% endschema %}

{% stylesheet %}
  .details-container {
    text-align: center;
  }
{% endstylesheet %}

 

If you need additional help, let me know

Konnte ich weiterhelfen? Dann klicke auf Like!
Wurde dein Problem gelöst? Markiere es als Akzeptierte Lösung
Für weitere Informationen und Kontakt, besuche MDI47.de
mcrofbre1010
New Member
4 0 0

and how would i go about adding the following "info icon" in the following location.

 

Screenshot 2024-01-08 150320.png

mdi47
Shopify Partner
12 1 2

It depends: What should happen after you click the info icon? Should it behave the same like the Read More?

Konnte ich weiterhelfen? Dann klicke auf Like!
Wurde dein Problem gelöst? Markiere es als Akzeptierte Lösung
Für weitere Informationen und Kontakt, besuche MDI47.de
mcrofbre1010
New Member
4 0 0

i want it to behave exactly like the website, basically further information on the collection for SEO purposes.