Wow, I'm sorry I missed so many of these features. Regarding the questions you asked.
User Unsubscribe
Using the Mailchimp API I'm relatively sure that one could refrain from sending users to Mailchimp in order to unsubscribe. Similar to a user profile that allows you to change your notification settings. I currently have added this ability to my site with a custom profile page, it's a little funny but it works. They are in essence just saying yes or no to certain fields, as opposed to completely unsubscribing.
Add remove profile fields
I wonder if allowing users the ability decide if they want to replace profile entries would be of value. I can only assume that those who use the "User Registration" plugin are generally doing this manually. Otherwise how are their user's managing entered data?
Currently, I use
function my_custom_userfields( $contactmethods ) {
unset($contactmethods['aim']); \\to remove default fields
$contactmethods['company_name'] \\to add customer contact details
return $contactmethods;
}
add_filter('user_contactmethods','my_custom_userfields',10,1);
Invitation code system
This would be amazing, having the ability to import users and then simply invite them is something I've been looking for a while. We have an old SharePoint site that I'm about to replace. We're finding it very very difficult to pull customer's and then have them register while still allowing new customer's to register.
Didn't I see a recommendation somewhere to use the gform_validation for this. Any idea how one would convert that to a invitation code?
Posted 13 years ago on Thursday July 21, 2011 |
Permalink