Integrate WordPress and bbpress profiles?

I have installed bbforum plugin in my wordpress. However It has two separate profiles for the blog users and the forum users. Blog users have profiles url:

/author/test/

Read More

While forum users have profile:

/forums/users/test/

Is it possible to integrate both profiles and make only a single profile? So that the users in forums also have same url as the blog profile? Thanks

Related posts

Leave a Reply

3 comments

  1. The short answer is that it is possible. The long answer is that you’ll likely have to adjust one or the other’s authentication methods to use the other scripts functions. You would also need to alter the session handling sections of both codes so that a user will be logged into both when they log into one of the scripts. This can be extremely complicated and will require a break check every time either application is altered.

    A possible third option is to add a hook into the user creation methods of both scripts and add the user to the alternate application at the same time. You would also need to update the password for the alternate application at the same time as well. The big problem with this method is that users would still need to log into both applications independently.