• Hey,
    At the bottom of my posts there is a author box, where it shows my name, picture, and a link with the text “View more posts from this author”.
    I really want to remove this, how do I do it?

    I’m using the free version of the new Capture theme by Slocum Studio

    I have had this problem a long time and have searched for multiple answered but nothing has worked, would really appreciate it if someone could help me out.

    Here’s a link to the part of my site where it shows up. It’s on the posts page where I have uploaded my art that the box at the bottom appears.
    http://aronart.flynn.dk/?p=40

Viewing 2 replies - 1 through 2 (of 2 total)
  • CSS fix –
    add this to style.css of the child theme:
    .post-author { display: none; }

    coding fix –
    in your child theme, edit loop.php and remove this section:

    <section id="post-author" class="post-author cf">
    				<section class="post-author-inner cf">
    					<header class="author-header">
    						<figure class="author-avatar">
    							<?php echo get_avatar( get_the_author_meta( 'ID' ), 128 ); ?>
    						</figure>
    					</header>
    
    					<aside class="author-details author-content">
    						<h3><?php echo get_the_author_meta( 'display_name' ); ?></h3>
    						<a href="<?php echo get_the_author_meta( 'user_url' ); ?>"><?php echo get_the_author_meta( 'user_url' ); ?></a>
    						<p><?php echo get_the_author_meta( 'description' ); ?></p>
    						<a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>"><?php _e( 'View more posts from this author', 'capture' ); ?></a>
    					</aside>
    				</section>
    			</section>

    for details, please post in https://wordpress.org/support/theme/capture#postform

    Thread Starter Aron Art

    (@aron-art)

    Thanks that worked great!
    I didn’t think you were supposed to edit in the capture theme itself though? But hey it worked so I guess it doesn’t matter.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to remove "view more posts from this author" box at the bottom of my site??’ is closed to new replies.