How Can I Add A View Collection Button on Product Page?

Topic summary

A user seeks help adding a “Back to Collection” button on the product page in the Kalles theme, positioned before the product description or under the buy button/product title.

Proposed Solution:

A responder provides step-by-step instructions:

  • Navigate to Shopify Admin > Online Store > Themes > Actions > Edit code
  • Locate product-template.liquid in Sections or Templates
  • Insert HTML code for the button before the product description:
    <a href="{{ collection.url }}" class="back-to-collection">Back to Collection</a>
    
  • Add corresponding CSS styling to theme.scss for button appearance (padding, background color, border radius, etc.)

Status: The solution has been offered but not yet confirmed as implemented or tested by the original poster.

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

Can someone please help me place a back to collection button before the product description on product page in Kalles theme? Beside the product title or under the “buy button”

https://ibb.co/S3ZP6Mt

Any ideas would be greatly appreciated. Thanks in advance!

Hi @Edith_2 ,

To add a “Back to Collection” button before the product description in the Kalles theme:

  1. Log in to Shopify Admin and go to Online Store > Themes.

  2. Click Actions > Edit code on your Kalles theme.

  3. In Sections or Templates, find product-template.liquid

  4. Locate the product title or buy button section and add this code before the product description :

Back to Collection

Add the following to theme.scss.liquid for styling:

.back-to-collection {
    display: inline-block;
    margin: 10px 0;
    padding: 10px 20px;
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
}
​

Got it! If you found my suggestions helpful, please consider liking or marking it as a solution.
Your feedback is appreciated! If you have any more questions or need further assistance, just let me know.

Thanks & Regards
Akshay Bhatt