Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #202452

    Hi Folks – is there anyway to move the tags from the bottom of the post to the top of the post just underneath the title?
    Thanks

    #202622

    Hey ShortieD!

    Please go to wp-content\themes\enfold\includes folder and open loop-index.php file and find

    echo '<footer class="entry-footer">';
    
                wp_link_pages(array('before' =>'<div class="pagination_split_post">',
                                        'after'  =>'</div>',
                                        'pagelink' => '<span>%</span>'
                                        ));
    
                if(has_tag() && is_single() && !post_password_required())
                {
                    echo '<span class="blog-tags minor-meta">';
                    the_tags(''.__('Tags:','avia_framework').'<span> ');
                    echo '</span></span>';
                }
    
                echo '</footer>';

    which should be between 176th and 190th lines and cut/paste it right below following line

    echo '</header>';

    Cheers!
    Yigit

    #202727
    This reply has been marked as private.
    #202730
    This reply has been marked as private.
    #202791

    Hi!

    Please do not copy paste from here but find the lines in loop-index.php file and cut and paste right under
    echo '</header>';
    I have tried it and it does work fine on my installation

    Best regards,
    Yigit

    #206118
    This reply has been marked as private.
    #206181

    Hi!

    Edit includes > loop-index.php, remove everything then replace it with this code: http://pastebin.com/y09HUmP5

    Regards,
    Ismael

    #206602

    ace – that did it – thanks!

    #206616

    Hi!

    Glad it worked. :)

    Cheers!
    Ismael

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘moving the position of the blog tags to under the title’ is closed to new replies.