Hi, I am logged in as an Administrator was initially Anspress Moderator changed it to Administrator but neither permissions allow me to access the Flagged or Moderate page from the Anspress Dashboard.  See snapshot.  I am using AP vs. 2.4.8 cuz goDaddy doesn’t have php 5.5 yet.

Another question is… is there a Anspress user Reputation summary / overview page or report so I can see summary reputation information about everyone who has asked/answered/commented?  Thank you.

Question Title is not showing on single question page, why?  Thank you.

So when, for example, everything must be moderated before user submission, and user is adding question, then after doing so he is redirected to that question. But he can’t see it, because post status is still not “Open”, so instead he is presented with info, that he don’t have permissions to view that page.

In this case user could be redirected to question list or we need to show him info about moderation.

With adding an answer is somewhat different story, but here I think, that user should better see info about “moderation”.

Anspress E-mail plugin sends notifications about all comments added on the site, not only these from Q&A. In a situation where the only comment system used is that included in WordPress, there is no issue. But when You are using, for example, Disqus and auto comment sync to the WP database, then Disqus sends mail, and so does WordPress. Is there any way, to send notificiation mail only about new Q&A comments?

This Notice doesn’t seem to go away or work, when you enter the Tags of WordPress…

Fix or Dismiss doesn’t work.

See:

As an editor with all roles, I still cannot ask a question on my QA.

 

On AnsPress, when I (this user) click on the green button “Ask”, I get an error message : “You don’t have permission to ask question.”

 

I don’t know if (and how) it is possible to submit changes to anspress. Is it possible (and recommended) to do that via the github repo ? Do we need to have special rights for that ?

Here’s the changes that I’d like to submit :

In function ap_reputation_get_info() (in /includes/reputation.php), some strings contain a direct post type (like ‘answer’ or ‘question’) which is therefore not translated.

This could be easily fixed by defining the following function :

function get_translated_post_type( $post_id ) {
	$post_type = get_post_type( $post_id );
	switch ( $post_type ) {
		case 'question':
			$translated_post_type = __( 'question', 'anspress-question-answer' );
			break;
		case 'answer':
			$translated_post_type = __( 'answer', 'anspress-question-answer' );
			break;
		default:
			$translated_post_type = $post_type;
			break;
	}
	return $translated_post_type;
}

and then calling

get_translated_post_type( $action_id )

instead of

get_post_type( $action_id )

in ap_reputation_get_info()

Thanks for letting me know if there’s a better way to submit pieces of code like that.

Fred

Hello there. I installed the category for anspress plugin and notice the following :

  • http://students.cri-paris.org/questions/?ap_filter%5Bcategory%5D%5B%5D=207  THIS WORKS
  • http://students.cri-paris.org/questions/category/week2/ this is 100% blank

 

Did I forgot to do something ?

Which way to hide the post of a category from question page? Because have something I don’t want to show on home page.

Please think about that.

Commenting anonymously simply says “there aren’t any comments yet”. Would like it to say something inviting like you must be logged in to comment.