I hope you mean adding a custom link in user menu ? if yes you can simply add this filter: function my_ap_user_link($links){ if(is_user_logged_in()){ $links['orders'] = array( 'slug' => 'orders', 'title' => __('My Orders'), 'link' => home_url( 'orders' ), 'order' => 1, 'show_in_menu' => false, 'public' => false, 'class' => 'icon-download'); $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' );
Yes this is a bug will be fixed soon. We are also working on improved tags suggestion.
You are missing #anspress, try this: ob_start(); echo '<div id="anspress">'; anspress()->anspress_users->questions_page(); echo '</div>'; $result .= ob_get_clean();
Its look like tooltipster CSS issue in voting. They are releasing a new version soon I will update to that version. Also add this CSS: #anspress .ap-pull-right{ float:left !important; } #anspress .ap-pull-left{ float:right !important; }
I will push a FIX now. Check github repo for commit.
Added a filter to disable IP logging of user for view count. add_filter('ap_log_ip_view', '__return_false'); Add this filter to your theme function.php