In Enfold, the categories are displayed andlinked right from below the Post title.
See here.
Right afterwards, it displays J.A. Shapira, le.gentleman /by J.A. Shapira. I understand the /by J.A. Shapira since this is the author but the other two are usernames of the two who worked on the pieces but I do not want to display them anywhere. I want to keep the author reference /by J.A. Shapira and the categories but not the usernames.
Thanks
Hey gentlemansgazette!
Try to insert following code at the bottom of functions.php
add_filter('avf_exclude_taxonomies', 'avia_exclude_tax', 10, 3);
function avia_exclude_tax($tax,$post_type,$id){
$tax[] = 'following_users';
return $tax;
}
Regards,
Peter
That worked, thanks!