Limited Time Offer | Get 10% OFF on All Themes Package. Use Coupon Code GRC10 Buy Now

WordPress Website Templates

Find Professional WordPress themes Easy and Simple to Setup

inner banner

Reply To: Sports Club Lite – Author does not show under posts

#20212
Cesar Vazquez
Participant

I was able to fix this issue, I edited the file sports-club-lite/content.php ->Lines->
<div class=”post-author”><i class=”fas fa-user”></i>
<?php printf(
/* translators: %s: post author */
esc_html_e( ‘Published by %s’, ‘sports-club-lite’ ),
esc_html( get_the_author() )
);
?>
I changed to

<div class=”post-author”><i class=”fas fa-user”></i>
<?php printf(
/* translators: %s: post author */
esc_html_e( ‘Published by ‘, ‘sports-club-lite’ ),
esc_html_e( get_the_author() )
);
?>

I know this is not the best way to fix it but I didn’t find any other way to do it, and I think this part can be removed n the next update, so please let me know if there is other way to fix it.
Thank you!!