Hi there,
how can I edit the post information on post details – resp. how can I remove the author link?
Thx for help & regards
Hi bivvo!
Try adding this code to the Quick CSS:
.blog-author{ display: none !important; }
Regards,
Josue
Thx for your reply.
For security reasons I want to remove the author link from the code. I intend to avoid robots to find out the login names.
Thx & regards
Hi!
Please go to wp-content\themes\enfold\includes folder and open loop-index.php file and find following code in line 158
the_author_posts_link();
and change it to
the_author();
Cheers!
Yigit
Yeah, that worked. Thanks a lot!