Greetings, I already have my amember installation up and running with several products setup. I am looking to consolidate several products I setup at an earlier time into one new product which I have just created. Is there a way to bulk import users into a new product and remove them from their existing product subscription? Thanks in advance, Derek
Logged on as admin -> Manage Product -> At the very bottom of the page there is a link to "Mass Subscribe Members"
Derek, Also you can do this with simple MySQL query: update amember_payments set product_id = 3 where product_id in (1,2) Where 3 is new product and 1,2 are old products. Please make database backup before this.
Wow, thank you for all the responses. They are much appreciated. This should do exactly what I'm in need of (especially the mysql query). Much appreciated, everyone.