How do I add a search icon or search button to the search field?

Hello Volodymyr Pekh, Yes, you can hide AnsPress default search form and add custom form like this: <form id="ap-search-form" class="ap-search-form" action="<?php echo ap_get_link_to('search'); ?>" method="GET"> <div class="ap-qaf-inner"> <input class="form-control" type="text" name="ap_s" id="ap-quick-ask-input" placeholder="<?php _e('Search questions & answers', 'anspress-question-answer'); ?>" value="<?php echo sanitize_text_field(get_query_var('ap_s')); ?>" autocomplete="off" /> <button type="submit" ><?php _e('Search', 'anspress-question-answer'); ?></button> </div> </form> Just make sure form action should point to: action="<?php echo ap_get_link_to('search'); ?>"

Want to tag location to the questions

Try this: add_action( 'ap_after_new_question', 'my_tag_location_on_new_question' ); function my_tag_location_on_new_question($question_id){ // Replace YOUR LOCATION HERE with your actual location. add_post_meta($question_id, '__question_location', 'YOUR LOCATION HERE'); }

No access to moderation or flagged question pages

Hello Guys, This has been answered already. Both this pages are removed and now flagged and moderated posts can be seen in question or answer table page.

No access to moderation or flagged question pages

wp-admin/admin.php?page=anspress_moderate & /wp-admin/admin.php?page=anspress_flagged I get also : You do not have sufficient permissions to access this page. Anspress 2.4.8

OAuth Authentication

Hi Ravi, Thank you for your suggestion. We downloaded a social login plugin but can’t get the login icons to appear on the top login menu (see screenshot below). Can you please help?! Thank you! Amy

Uncaught syntax error message upon question submission

the latest: Version 2.4.8

Email Notifications Not working

To debug this, do the following: Install Postman plugin, activate it, run the Wizard, and do the test email. When everything is ok, leave it for a while to work. Postman has a very detailed log for the actual email transactions. Check them to see if an email was actually sent or not and if it was delivered. And leave Postman active. A Great plugin. Robust.