How to add Log Out Option

Add this to Askbug child theme functions.php: function my_ap_user_link($links){ if(is_user_logged_in()){ $links['logout'] = array( 'slug' => 'logout', 'title' => __('Logout'), 'link' => wp_logout_url( ), 'order' => 100, 'show_in_menu' => false, 'public' => true, 'class' => 'icon-lock'); } return $links; } add_filter( 'ap_user_menu', 'my_ap_user_link' );

floating menu

Add this in AskBug child theme style.css: .body { padding-top: padding-top: 70px; } .site-nav { position: fixed !important; }

Font Icons, where I can find the list of shortcodes to use it?

There is no shortcode for font icons. instead you can simply use <i class="apicon-reputation"></i> You can find all available font icons here: AskBug font icon. Yes, you can use Font Awesome as well.

the extention plugin are not update to the last vertion of wordpress

Will check this soon.

Logout Button

Rahul, How to add logout button? thank you

Can I add “password protection” to the Categories?

Of course this is possible. You can simply add if else condition in question.php to check if question is posted in protected category. This feature may be get added in future.

Asking for language pluguin translation

You have to translate AnsPress to your own language if its not exist already. Install AnsPress email extension for sending email. https://wordpress.org/plugins/anspress-email/

What social media plugin would you recommend with Anspress?

I will suggest using AddThis sharing ( if you care about analytics).

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