I want to use one path to show many roles to choose from. Just like the role radio buttons are displayed when using the Allow User to Choose option. That means, in the Assign from Path settings section I would just give many roles the same path. Currently when using the same path for more than 1 role calling the path results in an Error 404.

Can you give me some direction where to start coding this? I'm happy to provide a patch if you are interested in including this feature.

Thanks for this module anyway!

Comments

Bilmar’s picture

subscribing - this will add a lot of flexibility in the path for registration =)

Berliner-dupe’s picture

subscribing

Anonymous’s picture

Hello,
Have you found a solution ? I try to create a registration landing page where a dropdown list will be presented to the user.
He would choose a role, click on "submit" and will be redirected to the path corresponding to the form of the selected role.

Best,

Anonymous’s picture

Ok, I've done it with javascript and a simple dropdown list on a landing page :)

function Links() {
i = document.role.List.selectedIndex;
if (i == 0) return;
url = document.role.List.options[i].value;
parent.location.href = url;
}



Choose a role
Role1
Role2
Role3