Home / Admin / Remove Specific Campaign Based on the Referral URL
Duplicate Snippet

Embed Snippet on Your Site

Remove Specific Campaign Based on the Referral URL

Code Preview
js
document.addEventListener('om.Campaign.startShow', function(event) {
    if(document.referrer.search.indexOf('google.com') > 0) { // replace with the specific referral domain
        var optinCampaign = document.querySelector('#om-CAMPAIGN_ID'); // replace CAMPAIGN_ID with the unique ID for your campaign
        optinCampaign.parentNode.removeChild(optinCampaign);
    }
});

Comments

Add a Comment