Was wondering how I could get the tag descriptions to appear on the archive pages like the category and custom taxonomy descriptions appear on their archive pages.
Thanks, Chad
Hey crschulz!
open up enfold/tag.php and replace:
<main class='content <?php avia_layout_class( 'content' ); ?> units' <?php avia_markup_helper(array('context' => 'content','post_type'=>'post'));?>>
with
<main class='content <?php avia_layout_class( 'content' ); ?> units' <?php avia_markup_helper(array('context' => 'content','post_type'=>'post'));?>>
<div class="category-term-description">
<?php echo term_description(); ?>
</div>
I’ll ask Kriesi to include this code with the next update.
Cheers!
Peter
Now I’ve got access to the complete “profile” of the tag, just like my categories and custom taxonomies. This allows me to customize every detail of the archive for each tag. Which is completely awesome;)
Thanks, Chad