We are currently using the Trade theme for our Shopify store and would like to move the “View All” buttons to the top right position in the featured product sections. Could anyone provide guidance on how to achieve this?
Welcome to Shopify Community! Can you share your Store URL so I can have a look on it? Also, if you have password enabled then please share the password as well. Your cooperation would be greatly appreciated.
Go to ‘Online Store’ → Themes → Click on the 3 dots (…) → Edit Code
In the Sections folder, locate the file named as ‘featured-collection.liquid’ and copy the entire code.
Create a new section named as '‘featured-collection-backup.liquid’ and paste the code you copied.
In the ‘featured-collection.liquid’ file, find this if statement
{% if section.settings.show_view_all and more_in_collection %}
{{ 'sections.featured_collection.view_all' | t }}
{% endif %}
Cut the if statement and locate inside file the element which looks like this:
Paste the if statement you cut before above the element.
It should look like this
{%- if section.settings.show_view_all and more_in_collection -%}
{{ 'sections.featured_collection.view_all' | t }}
{%- endif -%}
8. Replace the class name 'center' with 'right'

