How to hide Admin user from users list

Hi (IMPORTANT NOTICE:Don’t use default “admin” username! it’s so guessable. You can change it in your Cpanel or use “Username Changer” plugin &  you can desable and remove it after each usernam-changing) To (only) “hide” superadmin in users directory for non-admin members, please put this codes at the end of functions.php file in your theme. add_action('pre_user_query','ap_pre_user_query'); function ap_pre_user_query($user_search) { $user = wp_get_current_user(); if ($user->ID!=1) { // Is not administrator, remove administrator (you can add any user-ID) global $wpdb; $user_search->query_where = str_replace('WHERE 1=1', "WHERE 1=1 AND {$wpdb->users}.ID<>1",$user_search->query_where); } } This way only “hides” but if you need to hide your username completely (after hiding it by the codes) please use “Edit Author Slug” plugin. (you can remove your username-slug completely or change it). GOOD LUCK!

How to hide Admin user from users list

Added this to road map, will be fixed in upcoming version.

Add possibility to hide Notify dropdown and user dropdown from mobile menu

Add this css: @media screen and (max-width: 420px) { .anspress-page-notification, .anspress-page-profile{ display:none; } }

[WIP] Any French speaking user around ?

Parfois le traducteur français a préféré écrire des phrase entières avec des liens comme quand on doit se connecter pour poster. Là, pas de soucis. Mais parfois il y a une variable du type “%d Questions” et la traduction devient “Toutes les questions” ou un truc du genre. C’est assez souvent. Il y a aussi des erreurs de frappes quand le gars tape trop vite une traduction sans vérifier. Sinon globalement c’est assez propre ! 🙂

Translation missing

Yes its look like translation are missing in ap.pot. I will update it. 46 years ago issue has been fixed many days ago make sure you have latest version.

Notification dropdown does not appear (ubermenu)

We cannot fix the issue as we dont find the proper docs/hooks for the plugin. Instead we will provide an alternate way, we shall release a notification widget which you can add in menu. Cheers.

How to remove default anspress cover

Please use search before asking: http://anspress.io/questions/question/how-do-you-change-the-anspress-cover-photo-on-profiles/

How to enable email notification

Thank you for that. You are right. I see in the emails it comes from WordPress (wordpress@****.com) Do you know how to change this?   Thanks!

Remove credit sentence

Appearance -> customize -> Askbug options -> hide copyright in footer

Change the [Ask a question] buttons and [question]/[answer] activity

Similar to this, can we change that same button to say “sign up” for users who aren’t logged in?   Thanks!