Skip to main content
All CollectionsAd Formats
Direct Link (SmartLink)
Direct Link (SmartLink)
A
Written by Admin
Updated over a week ago

One of the most flexible traffic monetization solutions - Direct Link (aka SmartLink) - gives publishers the easiest way to send and sell traffic to Monetag. One link and thousands of offers rotating depending on the site, traffic and targetings. We pick the most suitable and profitable ad feed for each ad placement, and our optimization team is always searching for the best fitting ads to increase rates.

You can take a Direct Link from your personal account in the special tab or via the Sites menu (Sites -> Add Site -> Add zone -> Get tag).


The area in which your Direct Link will be placed is of your own choice. It can be any particular element on your site (an active button, a text, a picture etc.). We recommend to integrate it on the most clickable spot getting maximum amount of impressions accordingly.

Here are some examples of how a Direct Link can be integrated into a website:

HTML codes which you can use for above examples:

<a href="//go.oclasrv.com/afu.php?zoneid=00000" target="_blank">Download Free Games</a>

<a href="//go.oclasrv.com/afu.php?zoneid=00000" target="_blank"><img src="/download.gif" alt="Download Free Game" /></a>

If you want the ads to be triggered when a user clicks on a certain area of the page or a download button, like in the example above, you can use this javascript code (please, modify it to fit your needs):

<script type="text/javascript">
function open_win() {
window.open("//go.oclasrv.com/afu.php?zoneid=00000", "ad");
}
</script>
<a href="<your-target-link-here>" target="_blank" onclick="open_win()"><img src="/download.gif" alt="Download Free Game" /></a>

a more advanced version would look like this:

<script>
var els = document.querySelectorAll(".enter_a_css_here");
var smart_link = "http://enter-a-smart-link-here";
for (var i = 0; i < els.length; i++) {
els[i].onclick = function() { window.open(smart_link, "ad"); };
}
</script>

In case of any questions please contact our Support team via support@monetag.com.

Did this answer your question?