Add a Buy now button to any page

Buttons are still links: style them with your framework or a few inline CSS properties.

Point the href to the same /p/YOUR_PRODUCT_ID URL as in the link tutorial.

Sample: Bootstrap-style button link

If you do not use Bootstrap, copy only the href or use the inline-style example below.

<a href="https://pay.zenofy.io/p/507f1f77bcf86cd799439011"
   class="btn btn-primary btn-lg"
   role="button">
  Buy now
</a>

Sample: button look without a CSS framework

<a href="https://pay.zenofy.io/p/507f1f77bcf86cd799439011"
   style="display:inline-block;padding:12px 24px;border-radius:10px;
          background:#0ea2f7;color:#fff;font-weight:600;text-decoration:none;
          font-family:system-ui,sans-serif;">
  Buy now
</a>

Match colors and radius to your brand; the important part is the correct checkout URL in href.

All tutorials