move Button label to below heading - featured collection

Topic summary

A user wants to reposition the button in their featured collection section so it appears directly below the heading instead of at the bottom of the product grid.

Current Setup:

  • Using separate “Rich text” section for the title and “Featured collection” section for products/button
  • Button currently displays at the bottom after all products

Two Solutions Provided:

  1. Simple approach: Add a button directly in the Rich text section and link it to the collection (no coding required)

  2. Code modification: Remove the Rich text section, use the Featured collection’s built-in title option, then edit sections/featured-collection.liquid by moving the button code block from line 183 to line 88 (after the title/description code)

The issue remains open as the user hasn’t confirmed which solution they’ll implement.

Summarized with AI on November 1. AI used: claude-sonnet-4-5-20250929.

hello, i would like to move my button label for my featured collection so that it is below my heading, as it is currently at the bottom of the collection:

this is my store, i would like it to look something like this:

website is www.antico-abito.com , password is chasha , theme is dawn

Hello,

You are currently using 2 different sections:

  • Rich text section for the title
  • Featured collection for the products and the button

You have 2 options here.

Option 1 (the easier solution)
Add a button in the Rich text section and link it to the specified collection.

Option 2
Remove the Rich text section and add the title through the Featured collection (it has an option for a title). Then, you need to make some code modifications to change the position. Go to Online store → Themes → Edit code and find the file sections/featured-collection.liquid.
On line 183, you’ll see this code:

{%- if section.settings.show_view_all and more_in_collection -%}
  
    
      {{ 'sections.featured_collection.view_all' | t }}
    
  

{%- endif -%}

Cut it and paste it on line 88, after this piece of code:


  {%- if section.settings.title != blank -%}
  ## 
    {{ section.settings.title }}
  
  {%- endif -%}
  {%- if section.settings.description != blank
  or section.settings.show_description
  and section.settings.collection.description != empty
  -%}
  
    {%- if section.settings.show_description -%}
    {{ section.settings.collection.description }}
    {%- else -%}
    {{ section.settings.description -}}
    {%- endif %}
  

  {%- endif -%}

This will change the position of the button. I hope this is helpful.