Is there instructions on how to add menu items so they show up like this anspress site?

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.

Anspress 4: Deleting an ANSWER or Comment

Hello Cagliostro, Thanks for reporting the issue. I fixed it. Cheers.

Yoast SEO conflict, removes canonical – Major bug

Hello Jef, This issue is solved now. Thanks for reporting. Cheers.

Bug: All images become full width in Anspress 4.0.0

Hello, I have made a commit to fix this issue.

Error if install on multisite that already have subsite

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.

Filter by “featured questions” only?

Hello Chin, This functionality is not available yet. I have added this request to my task list.

Change the items in the drop-down menu

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.

Label color visivility

Hello, No, this is not a bug. Labels are meant for admin/moderator. But by default its shown by plugin.

Is the support on holiday ?

Nice i hope you enjoy 😉   please see my biggests problem https://anspress.io/questions/question/ap-4-form-is-not-posting/ 😉

Top Members widget

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