how to add sticky button

Topic summary

A user seeks help adding a sticky “Buy Now” button on their homepage (Savor theme) that links to a product page, preferably without paid apps.

Two solutions provided:

  1. Manual code injection (shahrozbabar5):

    • Edit theme.liquid or base.liquid
    • Insert CSS and HTML snippet before </body> tag
    • Customize product URL in the code
    • Offer extended: Free implementation with collaborator access
  2. Custom Liquid section (websensepro):

    • Add via theme customizer (no code file editing)
    • Use “Custom Liquid” section on homepage
    • Paste provided code snippet

Current status: User shared store URL (nordicwellness.com.au) and is awaiting collaborator access code to proceed with the first solution. Both approaches use custom code rather than third-party apps.

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

hi i want to create a sticky buy now button that directs to my product page on the new savor theme. does anyone have code or any help for adding a sticky buy now button for my home page. or any free apps ?

@NORDICWELLNESS

Sticky Buy Now Button (No App Needed – Manual Code)#### Steps:1. Go to Online Store > Themes > Edit Code.

  1. Open theme.liquid (or base.liquid in some themes).

  2. Just before , paste this code:

.sticky-buy-now { position: fixed; bottom: 20px; right: 20px; background-color: #000; color: #fff; padding: 12px 20px; border-radius: 30px; font-weight: bold; text-align: center; z-index: 9999; text-decoration: none; box-shadow: 0 4px 8px rgba(0,0,0,0.3); } .sticky-buy-now:hover { background-color: #333; } Buy Now
 

Replace /products/your-product-handle with your actual product URL.


I’ll add this custom feature at no cost and ensure it matches your theme perfectly. Just send your store URL and theme access.

thanks that would be aewsome www.nordicwellness.com.au

I also need the collaborator access code to fix this. so I can request access and resolve

Hi @NORDICWELLNESS ,

Go to Shopify Admin → Online Store → Themes → Customize.
On the homepage, click “Add Section”.
Select “Custom Liquid”.
Paste the full code below.


  
    BUY NOW
  

Thanks!