Skip to content

Best Practices

Customers who don’t see the financing option early won’t use it at checkout. Visibility at every decision point — from the homepage to the product page to the footer — directly drives conversion. These recommendations reflect current best practices based on merchant data.


The single most impactful placement. Show estimated monthly payments right next to the product price, where the buying decision happens.

Use the PPE Widget — it renders inline, adapts to the space available, and shows live monthly payment estimates without any navigation.

<!-- Option A: WeGetFinancing Messaging app (Shopify) — no code needed, use App Block -->
<!-- Option B: PPE Widget script for custom storefronts -->
<script>
window.ppeConfiguration = {
token: "YOUR_ACCESS_TOKEN",
priceSelector: ".price", // CSS selector matching the product price element
minAmount: 200, // hide widget below this price (USD)
branded: true,
customText: "or as low as",
hover: true,
position: "left" // "left" | "center" | "right"
};
</script>
<script src="https://ppe.wegetfinancing.com/index.js"></script>
<link rel="stylesheet" href="https://ppe.wegetfinancing.com/index.css">

Get YOUR_ACCESS_TOKEN from the partner portal under Integration → Conversion Boosters.

See PPE Widget for full configuration options and the Shopify app-based setup.


Add a financing banner above the fold or in a hero section to signal availability from the first visit. Customers who arrive already knowing financing is available are more likely to apply.

<a href="/financing">
<img src="https://cdn.wegetfinancing.com/media/1.0/banners/jpg/wegetfinancing_200x200_upto_36_months.jpg"
alt="Buy now, pay over time with WeGetFinancing" width="200" height="200">
</a>

Available banners (square, horizontal, vertical) are listed in the partner portal under Integration → Marketing Materials.


Create a standalone page explaining the program — what it is, how to apply, typical APR ranges, FAQ. Link to it from the homepage banner, footer, and product pages.

Recommended content:

<h2>Shop now. Pay over time.</h2>
<p>
WeGetFinancing matches you with partner lenders for the best financing offer
available for your purchase — up to 36 months to pay, with instant decisions.
</p>
<h3>How it works</h3>
<ol>
<li>Add items to your cart and choose WeGetFinancing at checkout.</li>
<li>Complete a short application — typically under 2 minutes.</li>
<li>Receive an instant decision and pick the offer that works for you.</li>
<li>We pay the merchant; you pay the lender on your schedule.</li>
</ol>
<p>
Questions? See the <a href="https://www.wegetfinancing.com/faq">WeGetFinancing FAQ</a>.
</p>

A small logo or text link in the footer keeps financing top-of-mind across all pages and signals partnership to customers who research payment options before adding to cart.

<a href="/financing">
<img src="https://cdn.wegetfinancing.com/media/1.0/buttons/png/btn_footer.png"
alt="WeGetFinancing — flexible financing available" width="128">
</a>

On pages listing multiple products, the App Embed (Shopify) or a script-based placement can show financing callouts next to prices across all products automatically, using the same priceSelector configuration as the product page widget.


WeGetFinancing must appear as a selectable payment method at checkout — this is the core integration. See the platform-specific plugin guides or the Custom Integration Guide for setup instructions.


Review every placement above in your mobile layout. A significant share of purchases happen on mobile, and banners or widgets that overflow or are too small on small screens will be missed.

  • For the PPE widget: use the position: "center" option and reduce fontSize if space is limited.
  • Test all checkout flows on real mobile devices, not just responsive browser emulation.