When converting to a POST, it would be nice to also use the Default Post category of WordPress for that post. Right now the converted post has NO category.

Thanks !

Using The SEO Framework i see the Canonical of Categories doesn’t work. Shows always the BASE page for all Categories (same for all Categories).

Not sure if YOAST shows that ok, if anybody uses YOAST please step in and give us some information.

Thanks

Hi,
Is AnsPress supposed to default to the BuddyPress profile if BuddyPress is enabled? When I click on a user profile image next to a question, it takes me to the AnsPress profile and not the BuddyPress profile. Is this expected behavior? I’m using AnsPress 3.0.7, BuddyPress 2.7.4 and AskBug 2.0.3.

(1) I upload an image to a post. After the upload is finished, the image is automatically inserted in the post body. So what the “Insert” photo near the attachment mean ?

 

(2) Editing a post, i delete an image attachment (via the trashcan icon). After that the inline image is still show and an icon (broken ?) at the botton with hover “Download File”. What is that ? Also the image doesn’t really exist because open the image to a new window and resfreshing you get a 404. Something is wrong in all that, not sure what. Some cache ?

 

Thanks !

Something is wrong .

 

….

Hi !

I’ve recently downloaded Askbug. And I noticed that there’s a mobile menu in the user profile page.
How can I put this menu anywhere in my website ? I’d like to see it on every pages not only on profile one (activity feed, profil etc…) !

The mobile menu right there 🙂 !

Thank u !

While i have set the second option for permalinks (/question/question-name/), in categories i get the first:

/index.php/questions-49/category/cat-1/

Also this “index.php” i see in some places, what is it ? Can’t be removed ? It is not how permalinks (beautiful) must be.

Thanks

PHP Deprecated:  Non-static method AnsPress_Category::column_header() should not be called statically in /home/wp-includes/class-wp-hook.php on line 298

Can we easily add education, work and other fields?  What about dynamic fields with autosuggest across hundreds of rows of data?

Hi,

I am working with Anspress and an Askbug-child and I have a problem with the count of answers displayed in the header of the question which is blocked on 1. This must come from the following code ($ans_count and 3rd echo)

<?php
	$ans_count 		= ap_question_get_the_answer_count();
	$last_active 	= ap_question_get_the_active_ago();
	$total_subs 	= ap_question_get_the_subscriber_count();
	$view_count 	= ap_question_get_the_view_count();
	$last_active_time = ap_human_time( mysql2date( 'G', $last_active ) );

	echo '<span class="ap-display-meta-item"><span class="stat-label apicon-pulse"></span><span class="stat-value"><time class="published updated" itemprop="dateModified" datetime="'.mysql2date( 'c', $last_active ).'">'.$last_active_time.'</time></span></span>' ;
	echo '<span class="ap-display-meta-item"><span class="stat-label apicon-eye"></span><span class="stat-value">'.sprintf( _n( 'One time', '%d times', $view_count, 'anspress-question-answer' ), $view_count ).'</span></span>' ;
	echo '<span class="ap-display-meta-item"><span class="stat-label apicon-answer"></span><span class="stat-value">'.sprintf( _n( '%2$s1%3$s answer', '%2$s%1$d%3$s answers', $ans_count, 'anspress-question-answer' ), $ans_count, '<span data-view="answer_count">', '</span>' ).'</span></span>' ;
	echo '<span class="ap-display-meta-item"><span class="stat-label apicon-users"></span><span class="stat-value">'.sprintf( _n( '1 follower', '%d followers', $total_subs, 'anspress-question-answer' ), $total_subs ).'</span></span>' ;
?>

Please note that the count of answers displayed below the question (on top of the answers list, shown herebelow) is working properly;

<?php printf(
	_n('%s%d%s answer', '%s%d%s answers', ap_answer_get_the_count(), 'anspress-question-answer'),
	'<span data-view="answer_count">',
	ap_answer_get_the_count(),
	'</span>'
	);
?>				

Could you please help me adapt the first code?

Many thanks in advance for your help,

Sincerely,

Thierry