Hi Rahul,

I wonder if there will be a simple version of the plugin?

I am not running a question answer website so I don’t need all features that related to performance (additional js, css, php).

If you can do a simple version without registration and profile page and other fancy stuff that would be great. Just search and question – answer, comments.

I think the plugin is great but there are many website that do not need all features.

Will it be possible?

PS. BTW when will membership extension be ready?

thanks

Hi,

I have the following code to use automatically to use postId as slug instead of post title.

add_action( 'save_post', 'using_id_as_slug', 10, 2 );
function using_id_as_slug($post_id, $post){
	global $post_type;
	if($post_type=='post'){
		if (wp_is_post_revision($post_id))
			return false;
		remove_action('save_post', 'using_id_as_slug' );
		wp_update_post(array('ID' => $post_id, 'post_name' => $post_id ));
		add_action('save_post', 'using_id_as_slug' );
	}
}

and it works for normal post. but doesn’t work for anspress questions.

I am suspecting $post_type==’post’ doesnt apply to anspress? Could you please provide me any insight as to how to make it work? thanks!

Enabled Recaptcha with correct keys but then posting does not work.

 

Check www.DPK.nu

Error message: Please check Capcha

With latest wordpress version and latest anspress files, I get this error on profile page:

Notice: ap_is_my_profile was called with an argument that is deprecated since version 2.4! Passing user_id in ap_is_my_profile is deprecated, function will check again currently logged in user.

Hi,

I am using anspress with buddypress.

it looks like BuddyPress profile pic functionality overwrite anspress.

eg: i upload an profile image on anspress profile page, although it says upload successful, but nothing changed even after refresh.

then i disabled buddypress plugin, the new uploaded profile image finally show up.

so my quesition is, how do i use anspress profile image functionality but not the buddypress one?

thanks

 

Hi. I’ using the AskBug Theme and I would like the header to be like the anspress.io  – full width.
The default size of the AskBug is limiting the number of menu items that I can have in on line. Thanks