Forums

Email removal using Blue Grace theme (3 posts)

  1. patjonsson
    Member
    Posted 8 months ago #

    I am using the Blue Grace theme and when I do a new post my email address and a date appears below each post title. ex: "myname@wordpress.org on September 22nd, 2012"

    How do I prevent my email from appearing under each title? Any detailed help would be very much appreciated.

    Thanks

  2. OurWebSupport
    Member
    Posted 8 months ago #

    Have you got a link to your site?

  3. Marcello Scacchetti
    Member
    Posted 8 months ago #

    By default the Blue Grace doesn't use your email address under posts, so please check inside wordpress under Users that your username is not an email address. If you really want to hide the information open the file: wp-content/themes/blue-grace/index.php at line 53 you should fine:

    <?php if (!is_singular()): ?>
        <div class="endate"><?php the_author(); _e(' on ', 'blue-grace'); the_time(__(get_option( 'date_format' ), 'blue-grace')); ?></div>
    <?php endif; ?>

    change it to:

    <?php if (!is_singular()): ?>
        <div class="endate"><?php the_time(__(get_option( 'date_format' ), 'blue-grace')); ?></div>
    <?php endif; ?>

    and it should be gone.

Reply

You must log in to post.

About this Topic