Help Me with Ad Code in Wordpress

theD2

Regular Member
Joined
Oct 26, 2011
Messages
247
Reaction score
55
hello , im trying to put exoclick's popunder which will pop up ON CLICK.

i placed this code in wordpress's header.php <body>
<script type="text/javascript" src="http://syndication.exoclick.com/splash.php?idzone=***MyId****&type=11"></script>


but i dont know where to place this code
target="_blank" onclick="exoMobilePop();"


===================
exo says

<script type="text/javascript" src="http://syndication.exoclick.com/splash.php?idzone=***MyId****&type=11"></script>
Place the complete code above into the <body> of your site.

This script will create a JavaScript function called exoMobilePop() that you can call on all the links of your mobile site.

Links should be modified adding this :

target="_blank" onclick="exoMobilePop();"
Example :

<a href="http://www.google.com" target="_blank" onclick="exoMobilePop();">My Link</a>

Note : Our script will trigger only one popunder per user, per 24 hours.
===================

please help :help:
 
You place it in an <a> tag like it says at the bottom of your example. You can place an onClick event in a variety of different HTML elements. For example on a button <button onClick="yourfunction"></button> or on a div <div onClick="yourFunction"></div> or on the <a> tag. Find the button or link or whatever that you want the popup to be triggered by. For instance if someone is supposed to click a button on your page, you need to find the code that makes that button and paste your onClick event there. The syntax you have in your example is for a link though (the target="_blank" will make the page open in a new window.

Hope that helps
 
One more thing. If you paste your code on an <a> tag, it should look like this <a href="/destination/url" target="_blank" onClick="exoMobilePop();">Your Link Text</a>
 
Sounds like mlaurin is correct. Say a prayer, stand on one foot, and make sure you're holding your mouth right as well. Getting ad codes to work in WP can be a sure way to the cardiac care unit, LOL.
 
Back
Top