FORUM MENU
Quote from N3k0 on August 8, 2019, 4:39 pmHi @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!
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!
Quote from N3k0 on August 9, 2019, 4:18 pmQuote from tyler on August 9, 2019, 1:16 amWill 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!
Quote from tyler on August 9, 2019, 1:16 amWill 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!