How to hide/remove vote, profile pic and tag

3.64K viewsGeneral
0

I want to hide the following

  1.  pic ( only in questions list page )
  2. votes
  3. tags

plz help

Attachments

sample.png
0

Add this to Askbug child theme style.css:

#anspress .ap-questions .ap-avatar, 
#anspress .ap-questions .ap-questions-vcount{
    display:none;
}

And add below code to function.php of askbug child theme:

function my_ap_question_sorting($navs){
    if( isset($navs['tags']))
        unset($navs['tags']);
    return $navs;
}
add_filter( 'ap_question_sorting', 'my_ap_question_sorting' );