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

Как сделать теги через запятую и в ряд

Как сделать теги через запятую и в ряд
, by

Через вьюз настроил анонсы и теги нормально показывает в ряд, через запятую. Но когда перехожу в полную новость(ноду) там теги выводяться списком, и никак их не могу сделать как надо.

1 answer
votes: 487
Answer

Нужно вставить код в шаблон ноды node.tpl.php, примерно вот такой:

<?php
  if(!empty($node->taxonomy)){
    print 'Теги: ';
    $counter=0;
    foreach($node->taxonomy as $term){
      if($counter){
        print ', ';
      }
      print l($term->name, 'taxonomy/term/'.$term->tid);
      $counter++;
    }
  }
?>