Link to Ultimate Member Profiles
Quote from Asgaros on July 21, 2018, 2:44 pm@childledj
You can change the edit-profile-link via the official edit_profile_url WordPress filter:
https://developer.wordpress.org/reference/hooks/edit_profile_url/
@collab @glazerjoni
For the output in UM: I am not sure if its useful or not but you can have a look into the /includes/forum-profile.php file. There you will find a showProfile() function which basically is fetching and rendering the data for the profile-view. You can try to do it similar like there. If I will find some time I will try to provide some additional UM/BuddyPress integration extensions for it as well. 🙂
You can change the edit-profile-link via the official edit_profile_url WordPress filter:
For the output in UM: I am not sure if its useful or not but you can have a look into the /includes/forum-profile.php file. There you will find a showProfile() function which basically is fetching and rendering the data for the profile-view. You can try to do it similar like there. If I will find some time I will try to provide some additional UM/BuddyPress integration extensions for it as well. 🙂
Quote from glazerjoni on July 21, 2018, 3:42 pmSweet @Asgaros! Quick Suggestion:
In the message that says -‘You must log in to post…’, you can convert login into a link if possible so users can just click that instead of looking for a login/register link or button on the website.
I have made a small donation on your website. Hope it helps:) Keep up the good work!
Sweet @Asgaros! Quick Suggestion:
In the message that says -‘You must log in to post…’, you can convert login into a link if possible so users can just click that instead of looking for a login/register link or button on the website.
I have made a small donation on your website. Hope it helps:) Keep up the good work!
Quote from Asgaros on July 24, 2018, 12:16 amThank you for your support, @glazerjoni
The “login”-string was linked to the login-page before but I removed it in one of the past updates because a login/register link is basically always available anyway in the forum-menu above. Maybe I will bring it back, but I am not sure about it yet, because its kind of redundant.
Thank you for your support, @glazerjoni
The “login”-string was linked to the login-page before but I removed it in one of the past updates because a login/register link is basically always available anyway in the forum-menu above. Maybe I will bring it back, but I am not sure about it yet, because its kind of redundant.
Quote from glazerjoni on July 24, 2018, 3:43 amyea. no biggie with the login link and its a nitpick anyways. Anyhoo playing with the /includes/forum-profile.php file. If successful, I will post it here in the forum for others to use
yea. no biggie with the login link and its a nitpick anyways. Anyhoo playing with the /includes/forum-profile.php file. If successful, I will post it here in the forum for others to use
Quote from meins57 on December 30, 2018, 1:25 pmIf I will find some time I will try to provide some additional UM/BuddyPress integration extensions for it as well.
Hi, weißt du schon ob du in die Richtung was machst? Benutze UM und würde mich freuen wenn da in naher Zukunft evtl. was kommt. Finde dein Forum klasse da es einfach ist aber trotzdem was her macht.
If I will find some time I will try to provide some additional UM/BuddyPress integration extensions for it as well.
Hi, weißt du schon ob du in die Richtung was machst? Benutze UM und würde mich freuen wenn da in naher Zukunft evtl. was kommt. Finde dein Forum klasse da es einfach ist aber trotzdem was her macht.
Quote from Asgaros on January 1, 2019, 9:16 pmHallo @meins57
An der BuddyPress-Integration arbeite ich zurzeit, bezüglich Ultimate Member kann ich dir allerdings noch keine Details geben. Dies würde ich danach in Angriff nehmen.
Hallo @meins57
An der BuddyPress-Integration arbeite ich zurzeit, bezüglich Ultimate Member kann ich dir allerdings noch keine Details geben. Dies würde ich danach in Angriff nehmen.
Quote from Apos37 on November 4, 2020, 5:10 pmIn order for this to work for me now, I had to modify the function to include the www, the end slash, and get user_nicename instead of user_login.
function my_link($link, $user) { return 'https://www.mysite.com/user/'.$user->user_nicename.'/'; } add_filter('asgarosforum_filter_profile_link', 'my_link', 10, 2);
In order for this to work for me now, I had to modify the function to include the www, the end slash, and get user_nicename instead of user_login.
function my_link($link, $user) { return 'https://www.mysite.com/user/'.$user->user_nicename.'/'; } add_filter('asgarosforum_filter_profile_link', 'my_link', 10, 2);