If I delete the downvote option from the Reputation section, will it be removed from the question pages?

Yes disabling downvote from option will hide down vote in AnsPress pages. If you don’t want down vote to be negative you can simply use this hook: add_action('ap_added_reputation', 'mycuatom_reputation_callback', 10, 4); function mycuatom_reputation_callback($user_id, $action_id, $reputation, $type){ if('vote_down' == $type){ //Your condition. } }

Does anybody wants to help in writing documents

I can help you if you want to make them in Spanish.

How to reset tags?

Simply add a new data, if need to reset question count simply add new question and it will update counts of posts.

Add unique CSS classes to BODY tag based on page type

Thanks for the snippet. I modified your code: // Add specific CSS class to body tag based on Anspress page type add_filter( 'body_class', 'body_question' ); function body_question( $classes ) { if(is_anspress()){ $classes[] = 'ap-page-' . ap_current_page(); } return $classes; }

Does the AskBug theme override the plugin’s CSS?

Theme style will never change.. Only bug will be fixed. If we add new features to AnsPress then new CSS for that feature will be added. Always use child theme to override parent theme styles, this way you can easily update without loosing any of your works.

Hover card is out of alignment

AskBug is not tested with beta yet. Alignment looks fine to me, card position is set to center of avatar. Please let me know why you think its not aligned.

PHP Fatal error: Call to undefined function is_question_tag()

Fixed it. Update AnsPress, tags and category to latest commit.

Installing an update on my wp site

This need to be done manually. Download from GitHub and then upload it to WordPress. In case if you see 2 AnsPress plugins in your WP site then remove old one.