First, I want to thank you for this great theme. But I want a bit more demo. Can you show me how comments are showing and second is it posibble to use drupal integrated forum and how it looks? Thanks in advance, Im thinking of using this theme for IT review site.

Comments

noobsaibots’s picture

One more question. Will theme handle the "Posted by; Date; Tags" line?

israelshmueli’s picture

For comments: You can take a look at one I'v just added added in the demo website at http://fontfolio.ish.co.il/node/24 .

israelshmueli’s picture

$submitted:

Currently the "Posted by:" and "Date: " are blocked (commented out ) at node.tpl.php file.

  <header>
      <?php print render($title_prefix); ?>
      <h3<?php print $title_attributes; ?>><a href="<?php print $node_url; ?>"><?php print $title; ?></a></h3>
      <?php print render($title_suffix); ?>
      <?php /* 
        if ($display_submitted): ?>
          <div class="submitted">
            <?php print $submitted; ?>
          </div>
        <?php endif; 
            */?>
    </header>

This means it effects all node types unless they have their own template file.
You can directly edit and modify node.tpl.php to allow show up of name and post date or override it with node type specific template file with name convention of: node--NodeTypeMachineName.tpl.php

Tags:

In Drupal 7 you can hide/show taxonomy terms like any other field. You cam do it from "Manage Display" tab of each content type.
For article node type it will be at /admin/structure/types/manage/article/display

israelshmueli’s picture

Default Drupal Forum:

No special styling was done for this feature.
For demonstration I enabled forum at the Demo website. See http://fontfolio.ish.co.il/forum

noobsaibots’s picture

Very big thanks for your answers.

noobsaibots’s picture

Status: Active » Closed (works as designed)