Beginning in version 2.0 we've added some basic upsell functionality into the checkout. It allows you to quickly show a modal window to customers on the checkout providing opportunities for them to add additional products to their cart prior to checkout.
The upsell modal window is displayed on page load of the checkout, based on conditions you set within your custom Twig logic.
To create the modal window contents, you overwrite a Twig block within your checkout template with your own HTML. When the modal functionality is enabled for your store, the actual modal window will only display to the customer if the block has some HTML elements contained within it. This means that if the block is empty, then it won't be shown to the customer. This approach is used to allow you to conditionally show the modal to the customer based on your own conditions - such as based on what products are in the cart.
Within the “Checkout” template page in your store's FoxyCart administration - set it to use a “Custom Template”, and look for the following code in the text area:
{% embed 'checkout.inc.twig' %} {% endembed %}
It is within these two lines that we'll be pasting our custom block. If you already have some other code within the embed
tags, add this additional block right before the closing {% endembed %}
tag. Your own code will be overwriting the upsell_modal
block - and as an initial start, will look like this:
{% embed 'checkout.inc.twig' %} {% block upsell_modal %} {% endblock %} {% endembed %}
Inside this block tag you'll place your own custom logic and HTML. The most common use case is that of offering an link or form to add an extra product into the customers cart, unless they already have the product in their cart. That approach could look simply like this:
{% block upsell_modal %} {% set showUpsell = true %} {% for item in items %} {% if item.code == "my-upsell" %} {% set showUpsell = false %} {% endif %} {% endfor %} {% if showUpsell %} <h2>Special offer just for you!</h2> <p>As a limited time offer, we're offering you this unique product for only $12.95. That's $5 off our normal price!</p> <p><a href='https://{{ config.store_domain }}/cart?name=Upsell+Product&code=my-upsell&price=12.95'>Yes, please add this product to my cart!</a> | <a data-remodal-action="cancel">No thanks</a></p> {% endif %} {% endblock %}
A few things happens within this code.
showUpsell
to truemy-upsell
. If one is present, we set the showUpsell
variable to false.showUpsell
is still true, meaning the customer hasn't previously purchased the upsell - we display some HTML tempting the customer to our upsell product. If they have, and showUpsell
is false - we don't output any HTML, leaving the block empty and so the modal won't display at all.The next step is to enable this functionality within your FoxyCart checkout. To do that, you need to make use of the custom values configuration option. Within your store's FoxyCart administration - navigate to the “Configuration” page found under “TEMPLATES”. Within the first group of options, enable the “Set your own custom values” option, and paste the following into the text area that appears:
{ "upsell": { "enabled": true } }
If you already have some custom JSON set in the custom value text area, you will need to merge this JSON into your own, ensuring that upsell
is included within the first level of the JSON object.
If you set enabled
to false
in this code - it will disable the upsell functionality from operating on your cart. Alternatively you can also simply remove the above code from the custom values textarea and save your configuration to turn off the upsell functionality.
You have complete control over what logic the Twig includes, and what HTML is output within the modal window. As with any FoxyCart templates, you can also include any custom styles you need - meaning you can create very complex and beautiful upsell displays for your store.
Some examples of more advanced set ups you could take:
FC.checkout.showUpsellModal()
. This function will re-render the upsell block and display if it's enabled and has at least one HTML element within the block to display.If you want to ensure the customer only sees the upsell modal once across multiple different checkout attempts, you can utilise cookies to store details about the customer that can be retrieved in future checkout sessions. As an example, the following code will add a cookie that will last for 30 days if the customer either closes the upsell modal or submits the add to cart form, preventing the customer from seeing it again for that timeframe.
You would include this code in the “footer” textarea of the “Add custom header and footer code to the templates” option found on the “configuration” page of your stores administration:
{% if context == "checkout" %} <script> var upsell_cookie_name = "fc_completed_upsell", cookie_expires_in = 30; // default, in days $(function() { var has_upsell_cookie = document.cookie.split(';').filter(function(item) { return item.indexOf(upsell_cookie_name + '=') >= 0 }).length; if (has_upsell_cookie) { $('[data-fc-id="block-upsell-modal"]').html(""); if (FC.checkout.upsell_modal) { FC.checkout.upsell_modal.close(); } } // On closing the modal $('body').on("mousedown", '[data-fc-id="block-upsell-modal"] [data-remodal-action="cancel"]', function() { addUpsellCookie(); }); // On submitting a form in the modal $('body').on("submit", '[data-fc-id="block-upsell-modal"] form', function() { addUpsellCookie(); }); }); function addUpsellCookie(days) { var expires = "", date = new Date(), days = parseInt(days); if (typeof days !== "number" || !isFinite(days) || Math.floor(days) !== days) { days = cookie_expires_in; } date.setTime(date.getTime() + (days*24*60*60*1000)); expires = "; expires=" + date.toUTCString(); document.cookie = upsell_cookie_name + "=true" + expires + "; path=/"; } </script> {% endif %}
You can modify this script as needed, updating the cookie_expires_in
variable to change the number of days they shouldn't see the upsell for.
The script also supports passing a custom cookie length, in days, to the addUpsellCookie()
function, so you could customise the number of days the customer shouldn't see the upsell modal for depending on what they interact with. If no parameter is passed, then the default value is used from the top of the script (30 days in the example code above). For example, if you wanted to just hide the modal if cancelled for the default amount, but hide for a year if the customer submits the form - you could edit the form submission event hook like this:
$('body').on("submit", '[data-fc-id="block-upsell-modal"] form', function() { addUpsellCookie(365); });
Finally, you can also comment out either of the event hooks that are triggered on closing the modal or submitting a form, depending on your needs. For example if you only wanted to prevent the upsell from showing again if the customer submits the form, you would comment out this line like this:
// $('body').on("mousedown", '[data-fc-id="block-upsell-modal"] [data-remodal-action="cancel"]', function() { addUpsellCookie(); });