Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #346926

    How can I show tags in simple portfolio pages? Like tags are shown in simple blog pages.

    #347255

    Hi shiz981!

    Open up /enfold/includes/loop-portfolio-single.php and around line 39 you should see this.

    wp_link_pages($avia_wp_link_pages_args);
    

    Try adding this beneath it.

    if(has_tag() && is_single())
    {
    	echo '<span class="blog-tags minor-meta">';
    	the_tags('<strong>'.__('Tags:','avia_framework').'</strong><span> ');
    	echo '</span></span>';
    }
    

    Regards,
    Elliott

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.