Skip to content

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. If you don’t have an account yet, complete the signup form — our team reviews each request and helps you onboard.

The two apps live on the Shopify App Store:


The WeGetFinancing Payment App adds WeGetFinancing as a payment method at Shopify checkout.

  • WeGetFinancing account activated with at least one lender.
  • An active Shopify plan with a Shopify store.
  1. Log into your Shopify Store admin backoffice.

  2. Go to the WeGetFinancing app on the Shopify App Store and click Add app.

  3. The installation opens a new tab with the Shopify Install page. Click Install App — you will be redirected to the WeGetFinancing login page.

    Shopify "Install app" page for the WeGetFinancing app

  4. Enter your WeGetFinancing credentials and click Continue.

    WeGetFinancing merchant-configuration login form

  5. On the merchant selection page, select the merchant you want to link to this store and click Link merchant. Your own username and store domain appear in place of the example values shown here.

    Selecting which merchant to link to the store

  6. Review the confirmation page (your chosen merchant name will be shown). Click Continue to proceed to Shopify Payments settings.

    Confirmation that the merchant is linked to the store

  7. In Shopify Payments settings, click Activate WeGetFinancing to complete the activation.

    Activating WeGetFinancing in Shopify Payments settings

  8. Under Settings → Payments, WeGetFinancing now appears as a payment method. Customers can select it at checkout.

    WeGetFinancing listed as a payment method in Shopify


The WeGetFinancing Messaging app installs the PPE widget through the Shopify theme editor — no code editing required.

  1. Open the WeGetFinancing Messaging app on the Shopify App Store.

    WeGetFinancing Messaging app listing on the Shopify App Store

  2. Click Install on the app page.

  3. Click Install App on the redirect page — you will be taken to the WeGetFinancing login page.

  4. Enter your WeGetFinancing credentials and click Continue.

  5. Select the merchant to link to this store and click Link merchant.

  6. 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.

    Messaging app linked, showing the PPE widget setup instructions button

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.

  1. In the theme editor, select the Product (or Cart) page template from the dropdown.

  2. In the left column, find Product information → Add block.

  3. Under APPS, click WeGetFinancing payment estimator.

    Adding the WeGetFinancing payment estimator block in the theme editor

  4. Drag the block to just below the Price block for best visibility.

  5. 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.

    Configuring the estimator block — custom text, branding, font size, and position

    Once saved, the estimated monthly payment appears beneath the product price:

    Estimated monthly payment shown on a product page

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).

  1. Click App embeds in the theme editor’s left panel.
  2. Toggle on payment-estimator.
  3. Open its configuration pane:
    • Price selector — CSS selector of the price element (default .price-item for Dawn-based themes).
    • Minimum price — widget hidden on products below this threshold.
    • Branding, custom text, and hover behave the same as the App Block.

The widget then appears across matching pages — for example, on each product in a collection:

PPE estimate shown under each product in a collection

  • 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.

The WeGetFinancing Messaging app was tested across the Home, Category, and Product pages with Google Lighthouse, in line with Shopify’s performance guidelines:

Page typeWithout appWith app
Home8278
Category8379
Product6261
Average73.871.1

The average impact is −2.7 points — well within the Shopify App Store requirement that an app not reduce a store’s Lighthouse performance score by more than 10 points.


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>