Annoying popup subscribe boxes

Learn how to make those annoying popup subscribe boxes. 

copy and paste the code below into the FILES tab, JAVASCRIPT, SCRIPTS area. 

Social Popup and Subscribe Box

Sample

$( document ).ready(function() {

   if ( isFirstTimeVisitor() ) {

$.colorbox({href:'/page/contact/social-iframe.html',iframe:true,width:600,height:550});
}
})

Subscribe Only

Sample

$( document ).ready(function() {

   if ( isFirstTimeVisitor() ) {

      $.colorbox({href:'/page/members/subscribe-ajax.html',iframe:true,width:600,height:250}); 
   }
})

Index Previous Next