FORUMS : sorting alphabetically

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
Il y a 14 ans
in my personal opinon, the nopCommerce forum is one of the easiest to use - i know it doesn't let you put smilies and things but that's not an issue for me - it does exactly what it's meant to.

So i'm planning to use this feature extensively but i have one requirement and that is to list the forum groups - as they appear on :
ForumGroup.ascx
in alphabetical order.

Can anyone give me some pointers on where to start?

Thanks in advance.

-Hayden
Il y a 14 ans
1. You can use display order property to manage it
or
2. Execute the following statement over your database:
ALTER PROCEDURE [dbo].[Nop_Forums_GroupLoadAll]
AS
BEGIN
  SET NOCOUNT ON
  SELECT *
  FROM [Nop_Forums_Group]
  order by [Name]
END
Il y a 14 ans
Andrei,

Thank you !
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.