Extra Block Types (EBT) - New Layout Builder experience❗

Extra Block Types (EBT) - styled, customizable block types: Slideshows, Tabs, Cards, Accordions and many others. Built-in settings for background, DOM Box, javascript plugins. Experience the future of layout building today.

Demo EBT modules Download EBT modules

❗Extra Paragraph Types (EPT) - New Paragraphs experience

Extra Paragraph Types (EPT) - analogical paragraph based set of modules.

Demo EPT modules Download EPT modules

Scroll

Код асденсе в тело нод Drupal 7

Код асденсе в тело нод Drupal 7
, by

Иван, Здравствуйте, вроде сделал по вашим рекомендациями, но что-то не отображается ничего, что я сделал:

 

1) установил модули Adsense и Adsense Injector

 

2) открываю свой node.tpl и вставляю следующий код

<div class="node-content"<?php print $content_attributes; ?>>
    <?php
      // Hide comments, tags, and links now so that we can render them later.
      hide($content['comments']);
      hide($content['links']);
      hide($content['field_tags']);
      print render($content);
    ?>
  </div>
  <div class="adsense-body1" style="margin-bottom:1em;">

<!-- START Google AdSense Ad Unit code, provided by Google -->
<script type="text/javascript"><!--
google_ad_client = "ca-pub-3282980833393742";
/* My Ad Unit Description */
google_ad_slot = "1235241790";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<!-- END Google AdSense Ad Unit code, provided by Google -->

</div>

3) в форматах ввода разрешаю использовать Adsense ТЕГ

4)захожу в настройки модуля Adsense Injecotr admin/config/content/adsense_injector
и в поле Inline Insertion вставляю:
<div id="adsense-body1" style="display:block;float:right;margin: 5px 10px 5px 10px;">[adsense:300x250:235241790]</div>


Итог: http://floomby.ru/s1/Qfwwb/full/ для анонимов реклама не показывается..... Помогите пожалуйста...
1 answer
votes: 735
Answer

Во-первых проверьте в разных браузерах, у меня например файерфокс режет всю рекламу с adsense. Во-вторых, вот код для примера с одного из моих сайтов:

 


Спасибо Иван!