Hello Rahul,

Thanks for the recent update in Askbug where you fixed the edit user profile page issue. Just a small addition to that, the page doesn’t display any message on updating the user profile. For now you are just printing “true”, which is the ajax call response in the JS Console. Is it possible to process the response of the ajax call and display a snackbar message?

Hi,
How can I take the user back to main page from the answers page? I currently have to click on back button manually. Is there anyway to add a link (< Back ) on the answer page? (especially where the #ofviews, date info is seen?)

dear support-team,
where can i add the user hover card?
thanks!

I’m using AnsPress 4.0.5 on WordPress 4.8.

Issues
-Answers and comment count is displayed, but comments are not.
-Japanese text “質問” for “ans” count is not correct, “回答” is.

Questions
Can I show the category from a question’s root page and “back to root” from the category page?

I see in my plugin system this:

Versie: 4.0.5
Auteur: Rahul Aryan
Laatst bijgewerkt: 2 maanden geleden

Is this the latest version i get no messages to download a new one.

Hi, Sometimes my website showing a 502 Error when I check the Logs, I see this:

PHP Fatal error: Uncaught Error: Call to a member function get_queried_object() on null in /nas/content/live/incube2/wp-includes/query.php:45\nStack trace:\n#0 /nas/content/live/incube2/wp-content/plugins/anspress-question-answer/includes/functions.php(146): get_queried_object()\n#1 /nas/content/live/incube2/wp-content/plugins/anspress-question-answer/includes/functions.php(169): is_anspress()\n#2 /nas/content/live/incube2/wp-content/plugins/anspress-question-answer/includes/views.php(40): is_question()\n#3 [internal function]: AnsPress_Views::insert_views(”)\n#4 /nas/content/live/incube2/wp-includes/class-wp-hook.php(298): call_user_func_array(Array, Array)\n#5 /nas/content/live/incube2/wp-includes/class-wp-hook.php(323): WP_Hook->apply_filters(NULL, Array)\n#6 /nas/content/live/incube2/wp-includes/plugin.php(453): WP_Hook->do_action(Array)\n#7 /nas/content/live/incube2/wp-includes/load.php(677): do_action(‘shutdown’)\n#8 [internal function]: shutdown_action_hook()\n#9 {main}\n thrown in /nas/content/live/incube2/wp-includes/query.php on line 45, referer: https://incube2.com/?p=774

========================

My AnsPress version: 4.0.5
WordPress Version: 4.8

Hello,
I am interested in the ability to list users by their roles on pages.

How do I go about this?

Thanks

Olufemi

Hi There,

I want to display the most recent 5 or 10 questions on my homepage.
Are there customization I can make to the standard shortcode to limit the number of questions displayed?
I also found this code:

<?php
ap_get_questions(array('showposts' => 5));
?>

<?php if ( ap_have_questions() ) : ?>
<div class="ap-questions">
<?php
/* Start the Loop */
while ( ap_questions() ) : ap_the_question();
ap_get_template_part('content-list');
endwhile;
?>
</div>
<?php ap_questions_the_pagination(); ?>
<?php
else :
ap_get_template_part('content-none');
endif;
?>

But it gives a:
Sorry! No question found.

While there are hundreds of questions..