User pages return 404

This was a bug in current stable version. You can download RC version of AnsPress from here: https://github.com/anspress/anspress/archive/9a321de6ea4641bdc1a0ca0af3ddfba96af1cf10.zip

What is category icon class and how to use it

Same question here

Social login

Thanks for letting us know. It has been fixed. We recently added https to our site and API was redirecting to http.

How to fix Notification Dropdown too small?

What about: #ap-notification-dropdown { width: 350px !important; }

Problem with

I also did not understand it, but if you want to make a text field empty use jQuery: $(document).ready(function(){ $('.textarea class or #id').val(''); });

How to install a localization?

You can upload your ap-fr_FR.po file to wp-content/plugins/anspress-question-answer/languages That`s it.

cover image in ask question page

Just add this code to your css file: .page-header.questions-header { background-image: url("/wp-content/themes/askbug/images/code.jpg"); background-position: center center; background-repeat: no-repeat; background-size: cover; } And just replace /wp-content/themes/askbug/images/code.jpg With your image url.

floating menu

Just add this class to your wordpress menu: navbar-fixed-top

How to install a localization?

Simply download and install poedit. and then load ap.pot file and edit. And then save as ap-xx_XX.po ap-xx_XX.mo Here xx_XX stand for your language code. If you are using English US then it will be: ap-en_US.po

cover image in ask question page

Copy askbug/template/anspress.php to your child theme. And paste this code at the top of file: <?php if(!is_question()): ?> <div class="page-header questions-header clearfix"> <div class="container"> <h1 class="entry-title">Questions – AnsPress Support</h1> <?php dynamic_sidebar( 'question-search' ); //Replace with your own registered position name ?> </div> </div> <?php endif; ?> And simply add background for class .questions-header