• Hello! I’ve searched around but I can’t find a solution to this. Could anyone let me know how to remove the byline from my website. I’m using the theme “Sight,” and my website is broadstreetonline.org. Thanks in advance!

Viewing 5 replies - 1 through 5 (of 5 total)
  • You can go into your index.php or single.php and manually delete the meta information.

    Or you can add a line to your style.css post-meta { display: none; }

    I would recommend creating a child theme to remove unwanted elements from the theme so you do not lose your work when the theme updates at a later date.

    Thread Starter albertodomca

    (@albertodomca)

    Would you happen to what is the exact meta information that I would need to take out of the single.php or index.php? When I add the line to my style.css it takes out the name but not the “by.” Thanks for your help!

    I don’t see the code that Paul posted on your site. Did you delete it? Also note that the code should be

    .post-meta { display: none; }

    you are looking for a line of code that is something along the lines of <div class=”post-meta”> by <?php the_author(); ?> on <?php the_time( get_option( ‘date_format’ ) ); ?>

    Thread Starter albertodomca

    (@albertodomca)

    .post-meta { display: none; }

    This worked! Thank you very much.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Removing byline from Sight theme’ is closed to new replies.