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?

Hi,

I’d like to show the 25 most recent/active questions below the category sections on main category page. How can this be done?

Thanks!

I have a plugin anspress that i need to monetize the questions and answers… and also show questions to people based on location, category of interest.

The admin has to have the ability to charge to post a question and also allow the user to post the question, then choose the best answer. After posing the question he/she will pay money via paypal/stripe and then when he gets the answer he’ll choose the best answer and the money will go to the best answerer