Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #32399
    pennsavage
    Member

    My second query regards picking and choosing the meta at the end of each post. On the home page it contains only the category and tags, which I rather like. In the actual post it contains the additional “author” and “bookmark the permalink” options. Any way to eliminate those last two from the posts?

    Thank you very much- this is an incredible service and a truly beautiful, user-friendly theme.

    #32485
    Sakin
    Keymaster

    @pennsavage: To remove that, first you need to build child theme of Catch Evolution Theme. Then you need to copy content-single.php file in your child theme and edit the line no 27 where you will find the following code.
    $utility_text = __( 'This entry was posted in %1$s and tagged %2$s by <a href="%6$s">%5$s</a>. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'catchevolution' );

    Change this to
    $utility_text = __( 'This entry was posted in %1$s and tagged %2$s', 'catchevolution' );

    For details about build child theme. Read this http://catchthemes.com/blog/create-child-theme-wordpress/

    #32540
    pennsavage
    Member

    Is there a way to align that footer text to the center without aligning all the text in the body of the post as well? I’d like all my entry-meta to be centered, both on the home page and in the post.

    Thanks for all your help.

    #32558
    Sakin
    Keymaster

    @pennsavage: Yes, you can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    .entry-meta { text-align: center; }

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Editing entry meta in footer of post only’ is closed to new replies.