Reputation for referring user

Under reputation tab you just have a set of constants that could be used by your code. Code you want to have is not written yet, you have to write it yourself. For example here is how handling “new comment added” looks like: $ap->add_action( 'ap_publish_comment', $this, 'new_comment' ); public function new_comment($comment) { $reputation = ap_reputation_by_event( 'new_comment', true ); ap_reputation( 'comment', $comment->user_id, $reputation, $comment->comment_ID ); } It just looks for that “new_comment” constant in database, then add this constant to reputation.   One would indeed expect AnsPress to hook itself to each event listed on Reputation tab, and add it’s value every time this event fires. No idea why it’s not implemented like this already.

Question Relating ‘Tags’

Will implement it.

How populate “how to ask” tab?

Create a page with “How to ask” content and then go to AnsPress option -> general and select page in how to ask select field.

Is it possible to add tags for answers?

Yes, it can be easily implimented. You can have a look at tags plugin and copy form fields of question and add them answer form hook.

After Update Problem

Check if Shortcodes are intact and also enable WordPress DEBUG to see any possible errors in the Anspress pages. Maybe you didn’t updated some extension also ?

After Update Problem

Try deactivate AnsPress and then activate it again. Then check AnsPress options, do they still point to /forum ? Then check your /forum page, does it still have [anspress]?

How to hide private pages from AnsPress users?

i also checked the above issue you have discussed, how to hide the pages from user’s ????

hidding the toolbar

Hello, aoon. You can do it with either CSS or snippet similar to this. There is also an option in AnsPress to change default editor, but afaik it would just replace this buttons with other buttons.

Notification when new question asked in a category that you are following?

Yes its completely possible. But you’ll need some simple customization.

Add unique CSS classes to BODY tag based on page type

Is this going to be added to core? Definitely useful!