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

modify footer

You can hide this from wp customizer. or if you want to edit this, simply copy footer.php in child theme and then edit it.

How to fix Notification Dropdown too small?

Try this: body ul ul#ap-notification-dropdown { width: 350px; }