Hi there,
the plugin adds some extra fields to the User profile which I need to remove. I was able to remove the Goolge+ and Twitter fields by doing this in my functions.php
function hide_profile_fields( $contactmethods ) {
unset($contactmethods['googleplus']);
unset($contactmethods['twitter']);
return $contactmethods;
}
add_filter('user_contactmethods','hide_profile_fields',10,1);
But how can I remove the Author Title and Meta Description?
Thanks in advance
Michael