Frank, that’s the exact issue I’m having as well. So you’re not alone on this problem, and none of the beta versions seem to fix this either. I’m very close to giving up on Anspress 4 and going back to the older version.
Hello Cagliostro, Thanks for reporting the issue. I fixed it. Cheers.
Hello Jef, This issue is solved now. Thanks for reporting. Cheers.
Hello, I have made a commit to fix this issue.
Hello, I tested MU with AnsPress today and don’t see this issue. Please make sure to deactivate and then activate AnsPress again if you manually update AnsPress. Cheers.
Hello Chin, This functionality is not available yet. I have added this request to my task list.
Hello, Sorry for late replay. here is an example: function my_ap_user_menu( $menus ) { // var_dump( $menus ); // This will show all menu items. if ( isset( $menus['notifications'] )) { unset( $menus['notifications'] ); } } add_filter( 'ap_user_menu', 'my_ap_user_menu' ); This above code will remove notifications item from user menu.
Hello, No, this is not a bug. Labels are meant for admin/moderator. But by default its shown by plugin.
Nice i hope you enjoy 😉 please see my biggests problem https://anspress.io/questions/question/ap-4-form-is-not-posting/ 😉
Hello, You can try this: $user_args = array( 'ap_query' => true, 'role__not_in' => [ 'administrator', 'ap_moderator' ], 'number' => 20, ); $ap_user_query = get_users( $user_args );