WordPress

Install Clarm on WordPress with the canonical widget loader snippet. You only need the widget ID from the dashboard.

Install

  1. Copy the snippet from Dashboard → Widget → Deploy
  2. Paste it into your site footer, a theme template, or a header/footer injection plugin
Canonical embedhtml
<script src="https://app.clarm.com/widget/loader.js" data-widget-id="YOUR_WIDGET_ID" async></script>

Optional custom events

If you fire custom WordPress or WooCommerce milestones, call the browser helper after the loader initializes.

Example custom eventphp
<script>
  window.ClarmTrack?.track('lead_form_submitted', {
    form: 'contact',
    page: window.location.pathname
  })
</script>