I'm interested in trying to use the Ultimate Picker datatype for selecting among Member Groups. To do that I need to tell Ultimate Picker what the node id of the "Member Groups" folder is. However, I can't figure out what the node ID of Member Groups is.
Are Member Groups not stored as nodes under a node?
I came across this issue myself a few days ago, doing some work on member registration automatically to different groups, and I think the only thing I could do was to pull the id out of the db:
SELECT [id] ,[text] FROM [dbname].[dbo].[umbracoNode] WHERE [text] = 'User Group'
This code should do it in SQL (change the dbname, and the content of the text filter)
Member Group Node ID?
I'm interested in trying to use the Ultimate Picker datatype for selecting among Member Groups. To do that I need to tell Ultimate Picker what the node id of the "Member Groups" folder is. However, I can't figure out what the node ID of Member Groups is.
Are Member Groups not stored as nodes under a node?
- Mark
I came across this issue myself a few days ago, doing some work on member registration automatically to different groups, and I think the only thing I could do was to pull the id out of the db:
This code should do it in SQL (change the dbname, and the content of the text filter)
is working on a reply...