Hi Edison,

Great theme, it's exactly what I was looking for.

I would like to be able to remove the metatags from any post. I sure this is fairly simple css but it's not my forte.

Your help would be appreciated.
Mike.

Comments

hswong3i’s picture

Component: Code » Miscellaneous
Assigned: Unassigned » hswong3i
Category: feature » support
Priority: Normal » Minor
Status: Active » Fixed

No, you don't need to modify ANY PHP or CSS code: go to admin/build/themes/settings, un-click ALL boxes in "Display post information on" section. It is a global option and will function for ALL activated themes on your site.

mosman’s picture

Thanks, that helped me remove the author and date but I'd like to hide the terms aswell.

hswong3i’s picture

Check the node.tpl.php and you will find this PHP code snippet:

  <div class="meta">
    <?php if ($picture): print $picture; endif; ?>
    <?php if (node_access('update', $node)): ?><a href="<?php print check_url(base_path()) ?>node/<?php print $node->nid ?>/edit" class="editlink" title="<?php print t('Edit') ?>"> </a><?php endif; ?>
    <?php if ($submitted): ?><div class="submitted"><?php print $submitted ?></div><?php endif; ?>
    <?php if ($terms): ?><div class="terms"><?php print $terms ?></div><?php endif; ?>
  </div>

Which means the terms are wrapped with CSS tag .meta .terms. Try to apply this code snippet within your custom.css in order to hide ALL terms data from ALL content types:

.meta .terms { display: none; }
Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.

rockaclimba’s picture

I want to remove tags from post as I am happy with tagadelic.