Yes may be, I will check and fix the issue.
I think clearfix issue, did you tried from github master.zip?
Enabled registration under Settings -> General? There’s a checkbox which allows anyone to register.
Please try new tag version: Download tags
Translation are submitted by users, so if any translation is missing then you can add it using poedit tool.
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' );
Add this in AskBug child theme style.css: .body { padding-top: padding-top: 70px; } .site-nav { position: fixed !important; }
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.