Drupal 7. Как показывать вставить в node.tpl.php текст, показываемый только в полной ноде

Главные вкладки

Аватар пользователя Valeratal Valeratal 12 мая 2011 в 10:32

Проблема собственно в вставке кнопки вконтакте. Если эта кнопка видна в тизере, то эти кнопочки собираются со всех 10 тизеров в кучу

Вот, в 6-ке, я выводил так. Правда вставляю код через блок

<?php if ($node_bot_ads && !$teaser): ?>
 <div id='node_bot_ads'>
 <?php print $node_bot_ads ?>
 </div>

Код, который хотелось бы показывать только в полной ноде

<table width="500"  border="0">
  <tr>
    <td> <iframe src="http://www.facebook.com/plugins/like.php?href=http://www.hr-portal.ru<?php print $node_url?>&layout=standard&show_faces
=false&width=450&action=like&colorscheme=light&height=35" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:300px; height:35px;" allowTransparency="true"></iframe></td>
    <td><!-- Put this script tag to the <head> of your page -->
<script type="text/javascript" src="http://userapi.com/js/api/openapi.js?23"></script>

<script type="text/javascript">
  VK.init({apiId: 1883507, onlyWidgets: true});
</script>

<!-- Put this div tag to the place, where the Like block will be -->
<div id="vk_like"></div>
<script type="text/javascript">
VK.Widgets.Like("vk_like", {type: "10"});
</script></td>
  </tr>
</table>

Комментарии