Adding links to user profile

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' );

Tag Suggestion not work

Yes this is a bug will be fixed soon. We are also working on improved tags suggestion.

How to show some content of user profile tab on my own page?

You are missing #anspress, try this: ob_start(); echo '<div id="anspress">'; anspress()->anspress_users->questions_page(); echo '</div>'; $result .= ob_get_clean();

problems in right

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; }

Minimum Question Length and Minimum Tags

I will push a FIX now. Check github repo for commit.

User IP in DB

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

[Bug] Delete Notification doesn’t delete the Notification without page refresh

Issie has been fixed.

Not logged in but still able to answer question

Issue has been solved, new commit pushed to github.