Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #790791

    Hi,
    I need to display the post tags in the main blog index page, where the blog excerpts are. I have it checked in Enfold options, but it only shows on the single post, not the blog index page (http://l2slegal.com/blog/).

    Thanks!

    #791722

    Hey Taryn,

    Yes, the option is not there and there is not a filter to do it via functions.php. You need to modify the inculdes/loop-index.php file to show them.
    You can find this code there

    
    
                if(is_single() && !post_password_required())
                {
                	//tags on single post
                	if(has_tag())
                	{
    
    

    and replace it with

    
    
                if (!post_password_required())
                {
                	//tags on single post
                	if(has_tag())
                	{
    
    

    If you need further assistance please let us know.
    Best regards,
    Victoria

    • This reply was modified 7 years, 6 months ago by Victoria.
    #791920

    Wonderful – thank you so much! :)

    #791928

    Hi,

    I’m glad Victoria was able to help you! If you need additional help, please don’t hesitate to contact us here in the forums.

    Best regards,
    Jordan Shannon

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