Hi All,
I am working with YAF + Umbraco integration and so far all is working really nice..
Now I want to change the sort order of forum posts an I cant really find a setting to do that..
I have checked the [yaf_post_list] stored procedure and found changing the @SortPosted parameter to 2 will do the trick.. I have hard coded this value with in the procedure and it worked fine..
SET @SortPosted = 2
but now I have problem with direct link to messages from notification email etc.. They are going to wrong page/post.. I have gone through the code and understood the problem is with finding the messagePosition
int findMessageId = this.GetFindMessageId(showDeleted, userId, out messagePosition);
or
[yaf_message_findunread]
but I can't figure out how to fix this.. Any help will be greatly appreciated..
Basically I want a way to sort the forum posts from newest to oldest and all other YAF functionality should just work as it should be ..
Thanks and Best Regards,
Ansar