It seems that the UM integration is not working. The user url link does not redirect to UM default profile. And there is no Custom tab created in UM profile for the list of questions asked by a particular user. Hope you can help me with this. Thank you so much. I hope for the continuous success of the plugin.
2 Answers
You can try the following code in the functions.php file:
add_filter('dwqa_get_author_link', 'dwqa_um_profile_link', 10, 3);
function dwqa_um_profile_link($url, $user_id, $user){
if(function_exists('um_user_profile_url')){
return um_user_profile_url($user_id);
}
return $url;
}
If you still face their issue, you can send me username & password of your site for further checking.
Still there is not any Custom tab in UM profile for the list of questions or answers asked by user
You can create a private question and send me username & password of your site for further checking.
Please login or Register to submit your answer