1. Which is the best user registration plugin compatible with your forum as I don’t want to use wordpress user registration protocol.
If they are based on the default WordPress user management, you could use whatever you want.
2. I want profile details which appear below profile pic on the post as well.
You could use the hooks for this. Have a look here:
https://wordpress.org/support/topic/useful-to-those-who-use-the-plugin-wp-recall/
3. Also option in profile to update pic there itself.
You can use whatever plugin you want for this. Just have a look at the WordPress plugin directory.
Best regards
@uncommonindians Hi
1. Any convenient you
2.
add_action('asgarosforum_after_post_author', 'my_function_asgaros_cabinet', 10, 1);
function my_function_asgaros_cabinet($author_id) {
echo 'Everything that's needed';
}

3. Paragraph 1
Asgaros We wrote together 🙂
-
This reply was modified 9 years, 3 months ago by
Yworld.
What works for me is the Ultimate Member plugin where I define login/logout permalinks and created user profile fields that can very easily be embedded into your forum author info via Asgaros hooks, example code in functions.php:
/*
Asgaros plugin hooks to add forum disclaimer detail (html) in various areas...
See https://wordpress.org/plugins/asgaros-forum/faq/
*/
function cdsnForumAuthorInfo() {
um_fetch_user( get_current_user_id() );
echo "<br /><div>Gender:".um_user('gender')."</div>";
echo "<div>Country:".um_user('country')."</div>";
echo "<div>Bio:".um_user('description')."</div>";
}
function cdsnForumLoginRequired($message) {
return "<p><br />• You must <a href='/login' title='Login...'>log in</a> or <a href='/register' title='Register as a new member...'>register</a> to contribute to our forum...<br /></p>";
}
add_filter('asgarosforum_filter_login_message', 'cdsnForumLoginRequired');
function cdsnForumLoginErrorMessage($message) {
return '';
}
add_filter('asgarosforum_filter_error_message_require_login', 'cdsnForumLoginErrorMessage');
// Action hooks...
add_action('asgarosforum_after_post_author', 'cdsnForumAuthorInfo');
The um_user() function returns the profile fields I setup in Ultimate Member, get the idea Then style accordingly as the previous poster here did. EASY.
🙂