Try this: Development version
Dont worry. This is already fixed, you just need to wait for the new version to release.
Please re-download from your account. Version 1.3 has been released. For allowing users to set labels while asking, go to AnsPress options -> labels and enable labels in ask form.
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.
Will implement it.
Create a page with “How to ask” content and then go to AnsPress option -> general and select page in how to ask select field.
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.
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 ?
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]?
i also checked the above issue you have discussed, how to hide the pages from user’s ????