1. in question. show stats right under user

reputation, best, answers, questions, any badges or titles whenever you add that

 

2. show tulip of question when you hover over it (just like you have for users)

 

3. make it ads friendly

 

4. category page images

Hi!!

When I follow a question, there is no notification in the “earth icon” when someone publish a new answer or select a “Best Answer”. Is a normal behavior, or I have some issues….

Thanks.

Hello,

I apologize in advance for the English language.
On this page: http://pavelvaclavik.cz/poradna/ want to deploy AnsPress.
But I have a problem with setting the plugin. Can you help me please? thank you

Greeting

Pavel Václavík

         

 

Hi, I am sure that I had setted base page for my AnsPress setting

 

This is my edit url, and it will return err_empty_response page to me.

http://xx.xx.xxx.x/discussion/?ap_page=edit&edit_post_id=672&__nonce=c5b72d27a1

 

Thank you !

For example, instead of showing how many questions there are, show how many subscribers instead?

First, thanks Rahul for answering my previous question. But to expand, when an upvote or downvote is clicked, the USER’s reputation is updated, +5, -3, +2, -1…

But, the number between the upvote and downvote is not updated/incremented. I’ve been looking in the PHP for where this html element gets updated, but can’t pinpoint it. In the vote_up function, where can i find where the QA-specific-post reputation gets updated? Hopefully I can look further into this and help find an issue.

Also, it allows me to upvote or downvote as many times as I want, not doing the typical “upvote, then i click it again and it takes it away.”

public function vote_up($postid, $counts) {
		$post = get_post($postid);
		
		// give reputation to post author
		if($post->post_type == 'question')
			$reputation = ap_reputation_by_event('question_upvote', true);
		elseif($post->post_type == 'answer')
			$reputation = ap_reputation_by_event('answer_upvote', true);
		
		$uid = $post->post_author;
		if(!empty($reputation))
			ap_reputation('vote_up', $uid, $reputation, $postid);
		
		if($post->post_type == 'question')
			$reputation = ap_reputation_by_event('question_upvoted', true);
		elseif($post->post_type == 'answer')
			$reputation = ap_reputation_by_event('answer_upvoted', true);
		
		$userid = get_current_user_id();
		
		if(!empty($reputation))
			return ap_reputation('vote_up', $userid, $reputation, $postid);
		return false;
	}

Would like to add a sentence. Can you point me to where I should go to do this? Thanks

Hello, the widget “(AnsPress) Breadcrumbs” dont work on WORDPRESS 4.3.

Thanks.