Users Page Search Bar

It will work with partial name too (though I will check once).

Importing from Django- Trying to find all fields needed for successful import

Here are the function which you can use after inserting question and answer BUT if you importing  using wp_insert_post, then this function get hooked automatically. https://gist.github.com/rahularyan/371f893f1ae5c6e788fc

Fake Users signing up?

Install “stop spammer registrations” plugin and that will solve your issue but even though some spammer are able to bypass this.

Renaming “Reputation” to “Smarty Points”

Hi was Asked several times! Please visit http://anspress.io/questions/question/rename-reputation-to-a-different-name/ and Renaming “Reputation” to “Smarty Points”

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.