Yep its already there, user can add their biography. But ask a user is not available at the moment, will be implemented soon.
this is a good idea it should be developed as an extension.
Will be fixed soon.
You have to send email using SMTP instead of PHP send mail. 🙂
I hope you set AnsPress base page as home page, so all permalink showing 404 error. Please read the documents for detail.
OK, this will be added.
You can simply override user/profile.php and add : echo do_shortcode('[userpro]'); That’s it. Cheers.
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 }
Just pushed a commit to github, updated pot file and now you can update %s %s %s ago
same here.