If I buy the Question Labels extension, how many sites can I use it on?

Must I buy it again if I want to use it on more than one site?

Your current theme for AnsPress is aimed at developers.

Your new theme will be for a general audience and allow changing settings without any knowledge of coding.

I need your new theme right now because I am building a new site that will be focused around Q&A.

Can you release a beta version now?

Offering a beta version will allow you to get feedback and testing from your community.

I will promise to report all bugs and issues, and give you very detailed feedback.

Just curious what everybody here is working on!  Put your URL here.

We can cheer each other on

Is there an easy way I can do this? Because people have to scroll all the way down on the page to write a response. See below screencap (under the question description by the original poster)

Hi,

I picked up an error with one of installed plugins, so I sent them a support request and they replied with the below suggestion;

their replied:

I have found the issue. It is coming from the plugin AnsPress. the plugin does enquire its css all over the admin and not only on the settings page of the plugin.

The plugin set the from many jQuery plugins used class .tab-content to max-width: 700px;. If I remove the css in the browser inspector all looks like it should. You should definitely inform the author of the AnsPress plugin and ask him to only load css and js if needed.

It will make issues again and again if the css and js is loaded global with many other plugins and often you will not know where the issue is coming from.

You can advise the plugin developer, he should hook his code into admin_enqueue_scripts and use the variable $hook_suffix to check if its the plugin settings page.

I am not sure whether he is 100% right, but I thought it is worthwhile to share this piece of information with you and hoping you can look into this matter and verify it from your end, then help me to resolve it, thanks.

NB. I have physcially disabled ANS plugin and then the conflicted plugin works perfect, just for your reference.

Regards,

Hi

I need to customize AnsPress pages and can create templates, but we can’t assign different templates for them because AnsPress creates only one page!

How can I do this? specially for “single-user” and “single-question” pages like current site (anspress.io).

My goals: changing the header for them, remove user-display-name from above of user-horizontal-top-menu, and display question-title like this site (with a background image).

thanks

You can add following codes to your themes function.php file for hiding Admin only in AP/BP users directory:

add_action(‘pre_user_query’,'ap_pre_user_query'); 
function ap_pre_user_query($user_search) { 
	$user = wp_get_current_user();
	if ($user->ID!=1) { 
		// Is not administrator, remove administrator 
		global $wpdb; 
		$user_search->query_where = str_replace(‘WHERE 1=1′, “WHERE 1=1 AND {$wpdb->users}.ID<>1″,$user_search->query_where); 
	}
}

The answerbox theme is using the wordpress search in header, how could I change to Anspress Search?