Hello,
is there a way to remove the hyperlink from the authors gravatar inside a post? I want only the photo to be displayed, and not point to http://mysite.com/author/username
Thank you
Hey Aristidis!
On line 130 in the /enfold/includes/loop-index.php file you should see this.
$blog_meta_output = "<a href='{$link}' class='post-author-format-type'><span class='rounded-container'>".$gravatar.$icon."</span></a>";
Change it to this.
$blog_meta_output = "<span class='rounded-container'>".$gravatar.$icon."</span>";
Best regards,
Elliott