Данный материал предоставлен сайтом ProWebber.cc исключительно в ознакомительных целях. Администрация не несет ответственности за его содержимое.
Скачать бесплатно Уведомление об обнаружении Adblock XenForo.
Скачать бесплатно Уведомление об обнаружении Adblock XenForo.
В данной инструкции вы узнаете как показать уведомление пользователям об обнаружении Adblock рекламного баннера Google.
Сначала создайте файл javascript, а именно advert.js и добавьте его в корневой каталог вашего форума.
добавьте в него следующий код:
document.write('<div id="tester">an advertisement</div>');
Потом откройте шаблон extra.less и вставьте ниже.
/* AdBlock Detection */
#tester {
display:none;
}
.blockContainer { text-align: center; margin: 10px auto; clear: both; }
.noticeContainer { padding: 20px; background: #c44; color: #fff; }
.noticeContainer .head { font-size: 22px; font-weight: bold; }
.noticeContainer .foot { font-size: 16px; margin-top: 10px; }
#tester {
display:none;
}
.blockContainer { text-align: center; margin: 10px auto; clear: both; }
.noticeContainer { padding: 20px; background: #c44; color: #fff; }
.noticeContainer .head { font-size: 22px; font-weight: bold; }
.noticeContainer .foot { font-size: 16px; margin-top: 10px; }
затем перейдите в раздел рекламы и выберите объявление, в котором вы хотите показывать сообщение, когда реклама заблокирована.
После того, добавьте ниже под кодом Google Adsense данный код:
<script type="text/javascript" src="/advertisement.js"></script>
<script type="text/javascript">
if (document.getElementById("tester") != undefined)
{
document.write(' ');
}
else
{
document.write('<div class="messageText ugc blockContainer"><div class="noticeContainer"><div class="head">Ad-blocking software has been detected!</div><div class="foot">This website is run by the community, for the community... and it needs advertisements in order to keep running.<br />Please consider disabling your ad-block or <a href="account/upgrades" style="color: #FFF933; font-weight:bold">becoming a premium member</a> to hide all advertisements. Thanks!</div></div></div>');
}
</script>
<script type="text/javascript">
if (document.getElementById("tester") != undefined)
{
document.write(' ');
}
else
{
document.write('<div class="messageText ugc blockContainer"><div class="noticeContainer"><div class="head">Ad-blocking software has been detected!</div><div class="foot">This website is run by the community, for the community... and it needs advertisements in order to keep running.<br />Please consider disabling your ad-block or <a href="account/upgrades" style="color: #FFF933; font-weight:bold">becoming a premium member</a> to hide all advertisements. Thanks!</div></div></div>');
}
</script>
Вы можете отредактировать сообщение, согласно вашему желанию и стилю.
Теперь вы можете проверить его, включив рекламный блок на своем веб-сайте.