Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

This document reviews how to route a sales funnel to Checkout Champ for checkout.


Acquire your Checkout Page URL

Redirect a button or link on your shopping site to the full URL of your Checkout Champ checkout page.

This can be found by opening the checkout page’s settings within the Funnel Visualizer.

Example:

https://checkout.mysite.com/checkout


Products

If there are products to pass, such as from a filled shopping cart, include the “products” parameter. The syntax is

?products=campaignProductId:quantity

Include a variant by adding a period and variantDetailId to the campaignProductId

?products=campaignProductId.variantDetailId:quantity

campaignProductId and variantDetailId are the Checkout Champ unique ids for your products.

Quantity is required. Separate multiple products by a semi-colon.

Examples:

https://checkout.mysite.com/checkout?products=234:1

https://checkout.mysite.com/checkout?products=234:1;235:2

https://checkout.mysite.com/checkout?products=87.45:3;79:2

https://checkout.mysite.com/checkout?products=87.45:1;87.46:2

https://checkout.mysite.com/checkout?products=87.45:1


Coupons

To route to Checkout Champ with automatic coupon application, include the couponCode parameter. Coupons can be passed with or without products. Coupons must first be entered on the funnel campaign to be recognized. It is not required to pass couponCode to a checkout page. couponCode can also be passed to any page prior to checkout, and will be maintained until the cardholder completes checkout.

Examples:

https://checkout.mysite.com/checkout?products=234:1&couponCode=HALFOFF

https://checkout.mysite.com/checkout?couponCode=10OFF

Note: If you’re using Woocommerce see this guide here.


Form Fields

Prefill the the standard form fields on your FunnelKonnekt forms by including the value(s) on the query string.

Examples:

https://checkout.myfunnelsite.com/checkout?&emailAddress=jd@emaildomain.com

https://checkout.myfunnelsite.com/checkout?products=234:1&couponCode=HALFOFF&firstName=John&lastName=Doe&emailAddress=jd@emaildomain.com

  • No labels