Please or Register to create posts and topics.

Link to Ultimate Member Profiles

PreviousPage 4 of 4

@childledj

You can change the edit-profile-link via the official edit_profile_url WordPress filter:

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. 🙂

glazerjoni has reacted to this post.
glazerjoni
If you want to support the development of Asgaros Forum, you can leave a good review or donate. Thank you very much!

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!

Asgaros has reacted to this post.
Asgaros

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.

glazerjoni has reacted to this post.
glazerjoni
If you want to support the development of Asgaros Forum, you can leave a good review or donate. Thank you very much!

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

Asgaros and N3k0 have reacted to this post.
AsgarosN3k0

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.

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.

meins57 has reacted to this post.
meins57
If you want to support the development of Asgaros Forum, you can leave a good review or donate. Thank you very much!

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);

 

PreviousPage 4 of 4