Is the last version of anspress in github reseting email format?

Yes may be, I will check and fix the issue.

Buddypress profile tab question page

I think clearfix issue, did you tried from github master.zip?

Register form

Enabled registration under Settings -> General? There’s a checkbox which allows anyone to register.

How to remove “Tag Field” from requirement asking process

Please try new tag version: Download tags

Is the translation of

Translation are submitted by users, so if any translation is missing then you can add it using poedit tool.

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.