om.SoundEffects.init

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

om.Styles.init

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

om.Optin.success example 1

document.addEventListener('om.Optin.success', function(event) { event.detail.Campaign.startClose(); } );

indexing

more keyword

Teddy James
<10

Kenect

Cathi Lundy
<10

Post Shortcodes

estimated read time, breadcrumbs, related posts

om-custom-redirect-all-close.js

jQuery(document).ready(function($){ function omRedirect() { var url = "https://optinmonster.com"; $(location).attr('href',url); } $(document).on('OptinMonsterOnClose', function(event, data, object){ omRedirect(); });…

css-buttons.css

html div#om-{{id}} input[type=submit], html div#om-{{id}} button { background: #ff6600 !important; }

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…

Notify if Stripe is put in Test Mode

Notification for Test mode on Update

Ilana Borsje PRO
<10
1 136 137 138 139 140 220