305 Snippets
<10 Favourites
<10 Downloads

focus outline none

div#om-{{id}} *:focus { outline: none; }

Remove Specific Campaign Based on the Referral URL-v1

document.addEventListener('om.Campaign.startShow', function(event) { if(document.referrer.search.indexOf('google.com') > 0) { // replace with the specific referral domain var optinCampaign…

om.Html.images

document.addEventListener('om.Html.images', function(event) { console.log(event.detail.Html); console.log(event.detail.Campaign); } );

om.Optin.init

document.addEventListener('om.Optin.init', function(event) { // This event is passed the Campaign object console.log(event.detail.Campaign); // This event is…

Revenue Attribution Exclude Campaign

document.addEventListener('om.Campaign.init', function(event) { if ('CAMPAIGN_ID' === event.detail.Campaign.id) { // replace CAMPAIGN_ID with the OptinMonster campaign's unique…

om-wp-plugin-load-in-head.php

// returning false will change the default location from footer to the head add_filter( 'optin_monster_api_loading_location', '__return_false'…

monsterlink styled

Yes, I want my discount!

om-js-events-ga-impression.js

// OptinMonster Javascript Event for Google Analytics Impression Event document.addEventListener( 'om.GoogleAnalytics.preImpressionEvent', function( event ) { var…

1 18 19 20 21 22 26