Forum breadcrumbs – You are here:Asgaros Support ForumTips & TricksFORUM MENU
Please or Register to create posts and topics.

FORUM MENU

PreviousPage 2 of 2

Hi @tyler

You can use a membership plugin to make user profiles pages instead of using the asgaros profile pages. I use Ultimate Member and I add my own link in the menu to the user profile, for example: mysite.com/profile . The plugin redirect the user to his own profile page 🙂

https://wordpress.org/plugins/ultimate-member/

Theres some other solution like using buddypress or other membership plugins. Only needs some extra configuration to work well 😉

Cheers!

@n3k0

Will the plugin work with the forum profile?

Quote from tyler on August 9, 2019, 1:16 am

Will the plugin work with the forum profile?

No. The plugin make his own profile page, you have to redirect the user links from the forum to the new profile page like this:

/* REDIRECT PROFILE LINK */
add_filter('asgarosforum_filter_profile_link', 'link_perfil', 10, 2);
function link_perfil($link, $user) {
  return '/YOULINKHERE/'.$user->user_login;
}

Remplace the “/YOULINKHERE/” whit you custom link to the profile 🙂

Cheers!

How would I code a url to in my wordpress menu to use the forum profiles?

PreviousPage 2 of 2