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.
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’ ) ); ?>
.post-meta { display: none; }
This worked! Thank you very much.