I am looking into using this module as a workaround, allowing users to purchase membership to our site for multiple people. I see that I am able to select a role that the user will get when they sign up to an event. Is there a way to override this role on each sign up event I create? So if they purchase a sign up to Event X they will also have Role A added to their account. But if they buy Event Y they will get Role B added to their account.

Comments

dca123’s picture

I don't know if this will help but you could

1) Use a CCK field with something like http://drupal.org/project/rolereference on each event. Use this to determine what role to give to signups
2) Use Conditional Actions on checkout with Custom PHP code to get the Role for the node and assign the role to the user who signed up.

Maybe?