• Resolved ginreviews

    (@ginreviews)


    Site is at https://bit.ly/vQO1qC

    Anyone know how to remove the written by author information at the bottom of page?

    Here is some code I was able to pull from firebug.


    <h3>
    Written by
    Amos
    </h3>
    <p class=”gravatar”>
    <div id=”author-description”>
    Vivamus vel sem at sapien interdum pretium. Sed porttitor, odio in blandit ornare, arcu risus pulvinar ante, a gravida augue justo sagittis ante. Sed mattis consectetur metus quis rutrum. Phasellus ultrices nisi a orci dignissim nec rutrum turpis semper.
    <div id=”author-link”>
    </div>

Viewing 7 replies - 1 through 7 (of 7 total)
  • you will have to remove this from the template file in the theme.

    Paste the index.php file in the theme you are using and I will tell you what you need to remove

    Thread Starter ginreviews

    (@ginreviews)

    [code moderated - please use the pastebin for any code longer than 10 lines - see forum rules]

    Thread Starter ginreviews

    (@ginreviews)

    [code moderated - please use the pastebin for any code longer than 10 lines - see forum rules]

    You can do two things.

    You can change the stylesheet at line 1070

    #post-author {
        border: 1px solid #E5E5E5;
        margin-bottom: 2em;
        overflow: hidden;
        padding: 20px;
    }

    to

    #post-author {
        border: 1px solid #E5E5E5;
        display: none;
        margin-bottom: 2em;
        overflow: hidden;
        padding: 20px;
    }

    Or remove the code from the template. I don’t see it in the above code. It may be in a file called single.php.

    Removing it by CSS is the quickest and simplest though in my opinion

    Thread Starter ginreviews

    (@ginreviews)

    Did that

    but it still appears

    example of this is at

    https://bit.ly/srD4qB

    Any ideas?

    Thread Starter ginreviews

    (@ginreviews)

    I see something like this in single.php

    backticks

    <?php /* If a user fills out their bio info, it’s included here */ ?>
    <div id=”post-author”>
    <h3>Written by <?php the_author_posts_link() ?></h3>
    <p class=”gravatar”><?php if(function_exists(‘get_avatar’)) { echo get_avatar( get_the_author_email(), ’80’ ); /* This avatar is the user’s gravatar (https://gravatar.com) based on their administrative email address */ } ?></p>
    <div id=”author-description”>
    <?php the_author_meta(‘description’) ?>
    <div id=”author-link”>
    <p>View all posts by: <?php the_author_posts_link() ?></p>
    </div><!–#author-link–>
    </div><!–#author-description –>
    </div><!–#post-author–>

    backticks

    Delete everything from

    <div id -"post-author">

    down to

    </div><!--#post-author-->

    I would comment it out but you can delete it as well.

    Mke sure to refresh your browser in order to see the updated result

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘how to remove Author information at bottom of ever page?’ is closed to new replies.