I have several memberships created with MS MembershipSuite. I have a few types of membership, such as full membership, student membership, etc. I also have types of membership that are differently priced based on country. It would be nice if the user selects a membership type, e.g., Student, then they fill out the Country form field, which I have added via content_profile, and then the system automatically selects the Student/North America membership.
I'm currently thinking about how to do this, but thought I'd bring up a use case that might be helpful for others, and would be useful to have by default in MS MembershipSuite.
-Brian








Brian,
I'm reluctant to provide integration with specific modules and unique use cases like this out of the box, mainly because it will clutter up the code and won't benefit the majority of the users, and may even confuse some people.
I'm not a fan of Content Profile either, and haven't used it much, so I'm not sure exactly how the workflow goes, but from what I've seen, it doesn't work when trying to use both Content Profile and other Registration modifiers like Membership Suite on the same User Registration form.
One thing that you can do is add a reminder on every page until the user has created their applicable Content Profile, by checking if they have made one in a hook_init() function, and if they haven't, then display a message and a link asking them to create their profile using drupal_set_message($message) in the hook_init() function. This would require a custom module. I always make a custom module to do custom things like this and hook_form_alter and other things specific to a site, whenever I build a drupal site.
Sincerely,
Leighton Whiting