Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #214273

    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

    #214994

    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

    #215137

    That worked, thanks!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Hot to remove user reference in posts?’ is closed to new replies.