Hi,
I'm integrating YAF with my existing e-commerce website using asp.net membership framework. I got everything working.
The only problem is that my existing website uses customer e-mails as username and I can't display those e-mails in the forum.
Is there anyway to select user profile nickname instead yaf user table name column value as topic last post user or posts users?
example:
- on SP yaf_topic_list: LastUserName = IsNull(c.LastUserName,(select Name from [dbo].[yaf_User] x where x.UserID=c.LastUserID))
- on SP yaf_topic_latest: LastUserName = IsNull(t.LastUserName,(select [Name] from [dbo].[yaf_User] x where x.UserID = t.LastUserID))
- on SP yaf_post_list: UserName = IsNull(a.UserName,b.Name)
Thanks,
Aldo.