Skip to main content
All CollectionsIntegrationsOther Integrations
Suppress contacts with JustUno forms
Suppress contacts with JustUno forms
Updated over 10 months ago

1. From your Justuno dashboard, click the Promotions icon in the left-hand navigation. Then, click the paintbrush icon to edit the email capture promotion.

2. Click </> Custom Code in the top right.

3. Click the </> TAB JS section at the top, and paste this script into the box. (If you have custom variables, use those instead.)

juapp("trackFunc", "engagement", function (email, eventname, promotitle, cmid, options, form) {
  if (eventname == "Engagement - Incentivized Form") {
    geq.suppress();
  }
});

4. Turn the Override Default JS On and click Save or Publish at the bottom.

Did this answer your question?