Hiral Jani
asked 5 years ago

Hi, I installed the plugin and I was trying to integrate it with Ultimate Members plugin but it failed.
Can you please help me to integrate with it so that I can redirect to users profile and also on Users profile one can see the DW questions and answers contribution

2 Answers
DominicStaff
answered 5 years ago

After activating the plugin, you can add the following code to the functions.php file in your theme folder.

add_filter('dwqa_get_author_link', 'dwqa_buddypress_profile_link', 10, 3);
function dwqa_buddypress_profile_link($url, $user_id, $user){
if(function_exists('bp_core_get_user_domain')){
return bp_core_get_user_domain($user_id);
}
return $url;
}
Hiral
replied 5 years ago

Thank you @Dominic
I was trying to workwith Ultimate members and I found this code is buddypress. So I tried replacing buddypress with Ultimate member and I found that it’s able to navigate to the profiles but profile doesn’t have the DW column for updates.
Can you help me with that ?

Parth Jani
replied 5 years ago

@Dominic I am facing the same issue

DominicStaff
answered 5 years ago

I have confused with the plugins. Sorry about that, you can try the following code: 

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 the username & password of your site for further checking.

Hiral
replied 5 years ago

Thanks @Dominic . I added this code and still its just redirecting it to the profile page. But on the profile page not able to see the DW Q&A.
Can you please give me your email so that I can pass on my site details to you.
And also mention what you need?
Do you also need FTP access?

Dominic Staff
replied 5 years ago

You can use the private option here: http://prntscr.com/m8p583

Powered by DW Question & Answer Pro