Link seems to work for me in the documentation for Newspaper 6, at least on desktop:
https://forum.tagdiv.com/custom-ad-spots/
Hi,
It should work also the articles ads please check this topic and add your link properly – https://forum.tagdiv.com/topic/create-custom-non-adsense-ads/
Thanks!
I followed the links from the newspapper Theme Panel
The links:
https://forum.tagdiv.com/header-ad/
https://forum.tagdiv.com/sidebar-ads/
https://forum.tagdiv.com/article-ads/
Are not working!
Hi,
Please use http://pastebin.com/ and provide the code that you use and it doesn’t work so I can test it on my side.
Thanks!
Guys, i have no code to show you cause i can’t find something relative at the documentation.
I would like to add a non adsense ad, at the header.
So from the theme panel i click there http://i.imgur.com/ySarspN.jpg
And then i see that http://i.imgur.com/YF4jdGj.jpg . A blank page.
hmmmm…. okay weird the docs seem to work for Newsmag docs but not in the Newspaper docs for “full ad system” with examples … the link you’re seeing in the panel is for the docs, and go nowhere.
From the newsmag docs you can see and example like so:
https://forum.tagdiv.com/ads-system-full-guide/
example code for placing HTML into the ad box — as shown in your screen cap — that big box is where you put your HTML like an image link wrapped in anchor link.
as so:
<div class="td-visible-desktop">
<a href="http://google.com" target="_blank"><img src="http://demo.tagdiv.com/newsmag/wp-content/uploads/2014/08/rec728.jpg" alt="" /></a>
</div>
<div class="td-visible-tablet-portrait">
<a href="http://google.com" target="_blank"><img src="http://demo.tagdiv.com/newsmag/wp-content/uploads/2014/08/rec468.jpg" alt="" /></a>
</div>
<div class="td-visible-phone">
<a href="http://google.com" target="_blank"><img src="http://demo.tagdiv.com/newsmag/wp-content/uploads/2014/08/rec320.jpg" alt="" /></a>
</div>
-
This reply was modified 11 years by
simchris.
Hi,
Now I see what you mean, it seems to link for newsmag documentation, I have also added this on our list and it will be fixed as soon as possible. Sorry for inconvenience!
These are div containers that you have to use for newspaper:
<div class="td-visible-desktop">
<a href="link when you click on the image"><img src="http://link to your image" alt="" /></a>
</div>
<div class="td-visible-tablet-landscape">
<a href="link when you click on the image"><img src="http://link to your image" alt="" /></a>
</div>
<div class="td-visible-tablet-portrait">
<a href="link when you click on the image"><img src="http://link to your image" alt="" /></a>
</div>
<div class="td-visible-phone">
<a href="link when you click on the image"><img src="http://link to your image" alt="" /></a>
</div>
Thanks!
