Hi @dppworld,
We don’t see any dropdown menu. Please leave some screenshot, which menu you mean?
Thank you @dppworld,
Please show me screenshot of the Dashboard > Forums > Settings > General Tab. I need to see the base URL and other forum page URL settings.
Also, let me know what changes have you done in Dashboard > Forums > Settings > Members admin page?
Ok, we found it. This is a core bug when you integrate it with BuddyPress. Somehow your BudyPress Profile Forum tab is path changed to /forum/ it should be /community/. So this is the problem.
Your current BuddyPress forum tab paths are:
https://www.dppworld.xyz/members/iamadmin/forum/
https://www.dppworld.xyz/members/iamadmin/forum/replies/
https://www.dppworld.xyz/members/iamadmin/forum/likes/
But wpForo links go to:
https://www.dppworld.xyz/members/iamadmin/community/
https://www.dppworld.xyz/members/iamadmin/community/replies/
https://www.dppworld.xyz/members/iamadmin/community/likes/
I recommend install some 301 Redirection plugin and add redirection rule untill we fix this issue in future releases:
1. From /members/iamadmin/community/ to /members/iamadmin/forum/
2. From /members/iamadmin/community/* to /members/iamadmin/forum/
Yes, you’re right. But redirection is not the solution as it’s very difficult to make redirection for all users. You gave links to make redirection for admin, but not for all members.
@dppworld,
You can fix it using 'wpforo_bp_member_profile_url' hook. here is the code. put it in your current active theme’s functions.php file:
if( function_exists('wpforo_feature') ){
function wpforo_to_buddypress_profile_links( $url){
if( wpforo_feature('bp_profile') ){
$url = str_replace('/community/', '/forum/', $url);
$url = str_replace('subscriptions/', 'replies/', $url);
}
return $url;
}
add_filter('wpforo_bp_member_profile_url', 'wpforo_to_buddypress_profile_links', 12);
}
How to Easily Add Custom Code in WordPress (without Breaking Your Site):
https://www.wpbeginner.com/plugins/how-to-easily-add-custom-code-in-wordpress-without-breaking-your-site/
Thank you so much @gvectors-team . It worked. 😊