Shopify
WeGetFinancing offers two Shopify integrations: a checkout payment method (customers finance at checkout) and the PPE messaging widget (estimates shown on product/collection pages before checkout).
Before installing either app, ensure your WeGetFinancing account has been created and activated with at least one lender. To create an account, visit app.wegetfinancing.com.
Checkout Payment Method
Section titled “Checkout Payment Method”The WeGetFinancing Payment App adds WeGetFinancing as a payment method at Shopify checkout.
Prerequisites
Section titled “Prerequisites”- WeGetFinancing account activated with at least one lender.
- An active Shopify plan with a Shopify store.
Installation
Section titled “Installation”-
Log into your Shopify Store admin backoffice.
-
Go to the WeGetFinancing Shopify App on the Shopify App Store and install it.
-
The installation opens a new tab with the Shopify Install page. Click Install App — you will be redirected to the WeGetFinancing login page.
-
Enter your WeGetFinancing credentials and click Continue.
-
On the merchant selection page, select the merchant you want to link to this store and click Link merchant.
-
Review the confirmation page (your chosen merchant name will be shown). Click Continue to proceed to Shopify Payments settings.
-
In Shopify Payments settings, click Activate WeGetFinancing to complete the activation.
-
Under Settings → Payments, WeGetFinancing now appears as a payment method. Customers can select it at checkout.
PPE Widget (Purchase Power Estimator)
Section titled “PPE Widget (Purchase Power Estimator)”The WeGetFinancing Messaging app installs the PPE widget through the Shopify theme editor — no code editing required.
Installation
Section titled “Installation”-
Open the Shopify App Store and search for WeGetFinancing Messaging.
-
Click Install on the app page.
-
Click Install App on the redirect page — you will be taken to the WeGetFinancing login page.
-
Enter your WeGetFinancing credentials and click Continue.
-
Select the merchant to link to this store and click Link merchant.
-
From the confirmation page you can click PPE Widget setup instructions to be redirected to the PPE setup tutorial, or Continue to the store settings to return to the Shopify dashboard.
Theme Editor — App Block (Product & Cart Pages)
Section titled “Theme Editor — App Block (Product & Cart Pages)”Use the App Block to add the widget to a specific product or cart page template.
- In the theme editor, select the Product (or Cart) page template from the dropdown.
- In the left column, find Product information → Add block.
- Under APPS, click WeGetFinancing payment estimator.
- Drag the block to just below the Price block for best visibility.
- Configure:
- Minimum amount — widget hidden on products below this price.
- Custom text — text before the estimated monthly payment.
- Position — left / center / right alignment.
- Branding — show or hide the WeGetFinancing logo.
- Hover — open the popover on hover in addition to click.
Theme Editor — App Embed (Home Page & Collections)
Section titled “Theme Editor — App Embed (Home Page & Collections)”Use the App Embed to display the widget across all pages that contain a matching price selector (e.g., collection pages and home page).
- Click App embeds in the theme editor’s left panel.
- Toggle on payment-estimator.
- Open its configuration pane:
- Price selector — CSS selector of the price element (default
.price-itemfor Dawn-based themes). - Minimum price — widget hidden on products below this threshold.
- Branding, custom text, and hover behave the same as the App Block.
- Price selector — CSS selector of the price element (default
Save & Remove
Section titled “Save & Remove”- Save — click the green Save button in the top-right corner of the theme editor.
- Remove — click Remove block at the bottom of the widget’s configuration pane. Uninstalling the app removes the widget from the entire store.
Manual Theme Code Installation (deprecated)
Section titled “Manual Theme Code Installation (deprecated)”For legacy themes that don’t support Online Store 2.0 app blocks, add the following to a Liquid section file (e.g. featured-collection.liquid) before the {% schema %} tag:
<link rel="stylesheet" href="https://ppe.wegetfinancing.com/index.css"><style> /* Required for correct z-index in product collections */ .wgf-ppe { position: relative; z-index: 1; }</style><script>window.ppeConfiguration = { priceSelector: ".price-item", token: "YOUR_ACCESS_TOKEN", // from backoffice: Integration → Conversion Boosters minAmount: 500, branded: true, customText: "or just", hover: true, fontSize: 90, position: "center"};</script><script src="https://ppe.wegetfinancing.com/index.js"></script>