here is user profile: http://snowykyoko.com/caselaw/legal-answers-2/user/titussjtu/

Here is an example for sorting a menu item add_filter('ap_user_menu', 'my_user_menu_override'); function my_user_menu_override($menu){ if(Isset($menu['questions'])) $menu['questions']['order'] = 1; // add order key here, default order key is 10 return $menu; }

Get new patch now.

User profile is being separated as a new extension. So please wait for some days. I will check your other 2 issue.

Will fix this today.

Yes its part of it, in older version it was add-on “Basic email” but now it is extension “AnsPress Notifications”. Working on this extension will release soon.

I have pushed a fix for this issue, please check and let me know. get latest version form Github.

I have added a better sorting function and will use it for ordering user menu. /** * Sort array by order value. Group array which have same order number and then sort them. * @param array $array * @return array * @since 2.0.0-alpha2 */ function ap_sort_array_by_order($array){ $new_array = array(); if(!empty($array) && is_array($array) ){ $group = array(); foreach($array as $k => $a){ $order = $a['order']; $group[$order][] = $a; } usort($group, function($a, $b) { return key($a) – key($b); }); foreach($group as $a){ foreach($a as $newa) $new_array[] = $newa; } return $new_array; } }

Favorite button is renamed to subscribe. Now there will be a list of subscribed questions list in user profile. Favorite thing has been removed.

Hi, I think I succeeded in creating a pull request: https://github.com/wp3/anspress/pull/243 I don’t know if it was still needed for this change but I just wanted to sort out how to do this so I’m future-proof 😉