Back to Integrations

Shopware Integration

Add Pulse to your Shopware 6 store via theme template.


Add the Pulse Script to Your Theme

Edit Resources/views/storefront/layout/meta.html.twig in your theme and add the Pulse script in the base_header block.

Resources/views/storefront/layout/meta.html.twig
{% sw_extends '@Storefront/storefront/layout/meta.html.twig' %}

{% block base_header %}
    {{ parent() }}

    <script
      defer
      data-domain="your-site.com"
      src="https://pulse.ciphera.net/script.js"
    ></script>
{% endblock %}

For more details, see the Shopware themes docs.