How to hide/remove vote, profile pic and tag
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' );