Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #67718
    Vasia
    Member

    hi!
    i want remove “add comment”, and move date&author to the end of announcement like in picture.
    i use catch evolution theme. site: site
    thx
    http://i.imgur.com/1wQ6kpm.jpg

    #67740
    Sakin
    Keymaster

    @Vasia: You can hide add comment by adding in the following css in “Appearance => Theme Options => Custom CSS” Box:
    .comments-link { display: none; }

    Tom move date & author to the end, you need to build child theme. For child theme, refer to http://catchthemes.com/blog/create-child-theme-wordpress/. Then copy content.php and then move the following code:

    <?php if ( 'post' == get_post_type() ) : ?>
        <div class="entry-meta">
            <?php adventurous_header_meta(); ?>
        </div><!-- .entry-meta -->
    <?php endif; ?>
    #67743
    Vasia
    Member

    ok, thx Sakin, i will try!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘how change post title’ is closed to new replies.