The ‘Active, Voted, Newest, Oldest’ filters for the answers of an individual question link back to the main questions page rather than sorting the answers.

If anybody is trying to remove a tab from question list, then simply follow this:

/**
 * Filter for removing "unsolved" link from question list tab
 * @param  array $nav contain link of tab in array
 * @return array
 */
function my_remove_ap_tab_item($nav){
	unset($nav['unsolved'])
	return $nav;
}
add_filter('ap_questions_tab', 'my_remove_ap_tab_item');

Copy and put this code in your theme

functions.php

Cheers!

Is there a way to change the background color of the answer count box based on whether the question has been answered?

Eg. If not answered

#anspress .ap-questions-acount {
background: #fff; }

and if answered

#anspress .ap-questions-acount-answered {
background: #61c17d; }

This would help users see which questions are answered a lot easier.

When you type in a tag on the ask page the text moves to the left of the textbox and the autocomplete doesn’t seem to be working.
Also the tag doesn’t register unless you add a comma or press enter.

My suggestion would be to make it so that when the user clicks outside the box it registers the tag (especially good when adding just one tag)

I need to change a lot of the standard wording for the front-end but despite editing the ap.pot file, nothing changes at the front end. Is there a single file that controls all the front-end wording? For example, I want to change the label ‘Category’ on the ‘ask a question’ form to ‘Your Location’.

Thanks.

It seems that the reputation points are not linking to the buddypress total in the new version of anspress. It was working but now it’s not. Has anything changed?


Let us know how you feel.

Some suggestions for the answerbox theme:

documentation plugin (knowledgebase)
Support for: http://getawesomesupport.com/
Ajax search
And compatibility to this plugin: http://codecanyon.net/item/userpro-user-profiles-with-social-login/5958681

Then this would probably be the best Support theme out there 😀

Hi – firstly, great plugin. I’ve nearly got everything running perfectly except, the meta page title for individual questions. Basically EVERY question page has the same meta page title (Site Name | Main Question Page Title).

Patently this is really bad from an SEO perspective so how do I set the meta page title so that the actual question is used for the meta title (i.e. How Much is an iPhone 6 | Site Name)?

Many thanks.

Keith

This was asked by another user before, just wondering what the status is.