what about “Set a biography” and “ask to answer”

Yep its already there, user can add their biography. But ask a user is not available at the moment, will be implemented soon.

what about “Set a biography” and “ask to answer”

this is a good idea it should be developed as an extension.

Show “User not found” instead of own profile

Will be fixed soon.

How can I change who the email sender is?

You have to send email using SMTP instead of PHP send mail. 🙂

In the home page, clicking next page will lead to error

I hope you set AnsPress base page as home page, so all permalink showing 404 error. Please read the documents for detail.

Add permission setting “anonymous can view profile”

OK, this will be added.

Load different content to the user profile tab

You can simply override user/profile.php and add : echo do_shortcode('[userpro]'); That’s it. Cheers.

Where to update Login and Register Link

Yes that option has been removed, you can use hook to update login link: add_filter( 'login_url', 'my_anspress_login_url', 10, 2 ); function my_anspress_login_url( $login_url, $redirect ) { //check if anspress and update login link if(is_anspress()) return 'YOUR LOGIN LINK'; return $login_url; // if not AnsPress return default link } This will update register link: add_filter( 'register_url', 'my_anspress_register_url' ); function my_anspress_register_url( $register_url) { //check if anspress and update login link if(is_anspress()) return 'YOUR REGISTER LINK'; return $login_url; // if not AnsPress return default link }

What about the ‘ago’ translation bug?

Just pushed a commit to github, updated pot file and now you can update %s %s %s ago

What about the ‘ago’ translation bug?

same here.