Skip to main content

Custom Inserts

Custom (page) inserts are used for displaying basket bargains. These are promotions that are displayed in the basket and can be added to the basket during checkout. To create a basket bargain, several steps need to be taken in the CMS, on the Front-end, and in the shop settings.

When creating the front-end for custom page inserts, the insert must be added to the new page by a front-end developer, who determines where the banner will be placed on the basket page. The banner can be formatted in the insert.

<!-- CloudSuite Admin INSERT -->
{% set CloudSuite Admin = cms_insert('helemaal-bovenaan') %}
{% if CloudSuite Admin.active %}
<hr>
<div className="row">
    <div className="col-xs-12">
        {{ CloudSuite Admin.data|safe }}
    </div>
</div>
{% endif %}