How do I remove the Gravatar from Posts?
Hey emeyer1!
Thank you for using our theme.
in functions.php at the end put the following:
add_filter('avf_loop_index_blog_meta', 'my_avf_loop_index_blog_meta', 10, 1);
function my_avf_loop_index_blog_meta($blog_meta_output)
{
if( is_string($blog_meta_output) && (stripos( $blog_meta_output, 'post-author-format-type' ) !== false))
{
$blog_meta_output = '';
}
return $blog_meta_output;
}
Cheers!
Günter
Will this code get stripped when an updated is pushed out?
Hi!
Yes, but you can use a child theme to avoid that – http://kriesi.at/documentation/enfold/using-a-child-theme/
You can download pre-built child theme here – http://kriesi.at/documentation/enfold/downloads/
Cheers!
Yigit