Get update from github.
Make sure you check option “Close question after selecting answer”
Hi It depends on the number of your plugins, your theme, Interferences between other plugins and Anspress and of course your hosting (specially). Please save one of your site-pages and check its file and folder (size of that folder-outer file, size of that folder, number of folder-inner files, number of .js files and number of your plugins), and please search for “increasing wp page loading” and use that ways. If the number of your plugins are high I can offer you a good way that’s very helpful. use Plugin Organizer plugin. Good Luck!
Hi if you want remove “admin bar” for all non-admin users, only add this codes at the end of functions.php file in your theme: /************hide admin bar ************/ add_action('after_setup_theme', 'ap_remove_admin_bar'); function ap_remove_admin_bar() { if (!current_user_can('administrator') && !is_admin()) { show_admin_bar(false); } } Or you want remove access to wp-dashboard, you need to try this in that file: add_action('admin_init', 'ap_no_dashboard'); function ap_no_dashboard() { if (!current_user_can('administrator') && !is_admin()) { wp_redirect(home_url()); exit; } } Or you can use “Theme My Login” plugin!
As replied by OP: Ok, I figured it out! It was Akismet plugin for anti-spam. Having any kind of anti-spam plugin severely slows down the posting status of a answer or making a new question. There is a loading spinner shown by AnsPress while sending ajax request, check if that is not working with your theme. Ajax request on our site works fine, I think its due to your server please consult with your hosting company and let us know.
Simply override answer form and and add this if else before file: $time_after_no_answer = 86400 // One days if(current_time() > get_the_date('timestamp') + $time_after_no_answer)){ //answer-form.php contents here } This above code will check if question time is greater then current time, then only answer form will be visible.
Hi, if possible – 1. Post poll like questions / multiple choice questions – you once mentioned something like similar meta (option 1, option 2 etc) will have to be added (don’t remember the exact words) 2. navigation link for next and previous question for the selected criteria Thanks
Try adding below code in your WP theme functions.php https://gist.github.com/rahularyan/d9e19ad43397cca7495f
Add groups Have category image show on page
AnswerBox is not responsive yet. we are working on V2 which will release soon.