Community Support Forums — WordPress® ( Users Helping Users ) — 2012-01-19T16:10:05-05:00 http://www.primothemes.com/forums/feed.php?f=4&t=10151 2012-01-19T16:10:05-05:00 http://www.primothemes.com/forums/viewtopic.php?t=10151&p=61020#p61020 <![CDATA[Re: mailchimp setup question]]>
Yes, definitely hyper-advanced stuff. Nonetheless thank you for such a detailed answer. It is something well worth looking into outsourcing.

Best regards,

Mark

Statistics: Posted by MarkMBravura — January 19th, 2012, 4:10 pm


]]>
2012-01-19T15:24:47-05:00 http://www.primothemes.com/forums/viewtopic.php?t=10151&p=61012#p61012 <![CDATA[Re: mailchimp setup question]]>
MarkMBravura wrote:
Hi guys,

So my question is this... Is it possible to have 1 mailchimp list and use the groups/segment feature of mailchimp to track specific subscribers who signed up on specific pages?

For instance, let's say i've got a main squeeze page on the main domain landing page and another seperate squeeze page with a different optin offer on a different page. Is it possible to somehow individually track the signups from each individual squeeze page using only one mailchimp list? And if so, how would i best go about it? If not, what would be a viable alternative?

In the net result all subs will go to the same member login landing page. The only thing i am ultimately trying to accomplish is to determine which subs came from which advertising campaigns.

Any help would be greatly appreciated!

Mark

With s2Member, it is possible to configure different MailChimp® Interest Groups for each Membership Level, as seen in your Dashboard under s2Member -> API List Servers ... (see attached screenshot). So you could have only ONE mailing list ID, but subscribers get broken down into various Interest Groups that you configure in your MailChimp® administration panel, and then reflect in your s2Member configuration.
SNAG-0022.png


However, even this can be limiting if you are trying to track specific information based on a marketing campaign. This is why s2Member makes the custom="www.example.com|my-custom-value" Shortcode Attribute available for you to fill in your Payment Buttons/Forms.

If you need to track some additional custom information, you can fill the value of the custom="" Shortcode Attribute with PHP perhaps. Please see this reference article: viewtopic.php?f=36&t=1604

SNAG-0023.png


Now, once you are collecting a pipe-delimited custom value in your Shortcode, you can further your custom integration with s2Member, by adding custom MERGE fields for MailChimp, which might pass your custom value over to MailChimp automatically. There is a reference article here: viewtopic.php?f=4&t=15345&p=48213#p48213

For example, you might create this directory and file:
/wp-content/mu-plugins/s2-hacks.php
( these are MUST USE plugins, see: http://codex.wordpress.org/Must_Use_Plugins )

Code:
<?php
add_filter
("ws_plugin__s2member_mailchimp_merge_array", "my_filter");
function my_filter($merge, $vars)
    {
        // $merge /* Array of existing MERGE fields that s2Member passes by default. */
        // $vars /* Array of defined variables in the scope/context of this Filter. */
        // print_r($vars); // Lots of good stuff in this array.
        
        $user_id 
= $vars["user_id"];
        
        $user_custom 
= get_user_option("s2member_custom", $user_id);
        $my_custom_merge_vars = array("S2_CUSTOM" => $user_custom);
        
        return array_merge
($merge, $my_custom_merge_vars);
    }
?>
* Based on this example, you would need to add a new MERGE field to your MailChimp list, with the name: S2_CUSTOM, which will hold the value of your custom="" Shortcode Attribute. You can then filter your email campaigns sent out by MailChimp®, based on the value of this field. Or perhaps, just keep it on file for each subscriber, so you'll know where they originated from (i.e. based on some custom value that you track in a marketing campaign).

See Also: MailChimp MERGE Tags.
http://kb.mailchimp.com/article/getting ... merge-tags


Obviously, all of this is VERY advanced stuff. We'd like to extend s2Member in ways that make these types of custom integration easier. Those improvements will come in a future release. For now, if you're not comfortable with this, you might seek assistance from a freelancer to help you complete this custom integration with MailChimp®.

s2Member® / Hot Tip: ( s2Installs.com! )

Recommended by s2Member® Lead Developer (Jason Caldwell). Their rate for a standard installation is $125. They're highly trained. Just request their service!

Need Help? Post A New Job!

It's free. Your Job will appear here, and @ jobs.wordpress.net. It will be displayed for a period of 21 days; or until you take it off, whichever comes first. Good luck!

Statistics: Posted by Jason Caldwell — January 19th, 2012, 3:24 pm


]]>
2012-01-19T14:24:09-05:00 http://www.primothemes.com/forums/viewtopic.php?t=10151&p=61004#p61004 <![CDATA[Re: mailchimp setup question]]> Statistics: Posted by MarkMBravura — January 19th, 2012, 2:24 pm


]]>
2012-01-19T14:16:57-05:00 http://www.primothemes.com/forums/viewtopic.php?t=10151&p=61003#p61003 <![CDATA[Re: mailchimp setup question]]> Thanks for bringing this thread to my attention.
~ I'm reviewing your question now. One moment please.

Statistics: Posted by Jason Caldwell — January 19th, 2012, 2:16 pm


]]>
2012-01-17T14:11:30-05:00 http://www.primothemes.com/forums/viewtopic.php?t=10151&p=60839#p60839 <![CDATA[Re: mailchimp setup question]]> Statistics: Posted by MarkMBravura — January 17th, 2012, 2:11 pm


]]>
2012-01-17T04:39:53-05:00 http://www.primothemes.com/forums/viewtopic.php?t=10151&p=60801#p60801 <![CDATA[Re: mailchimp setup question]]>
So my question is this... Is it possible to have 1 mailchimp list and use the groups/segment feature of mailchimp to track specific subscribers who signed up on specific pages?

For instance, let's say i've got a main squeeze page on the main domain landing page and another seperate squeeze page with a different optin offer on a different page. Is it possible to somehow individually track the signups from each individual squeeze page using only one mailchimp list? And if so, how would i best go about it? If not, what would be a viable alternative?

In the net result all subs will go to the same member login landing page. The only thing i am ultimately trying to accomplish is to determine which subs came from which advertising campaigns.

Any help would be greatly appreciated!

Mark

Statistics: Posted by MarkMBravura — January 17th, 2012, 4:39 am


]]>
2011-09-06T13:43:37-05:00 http://www.primothemes.com/forums/viewtopic.php?t=10151&p=34109#p34109 <![CDATA[Re: mailchimp setup question]]> Thanks for reporting back on this.

Statistics: Posted by Jason Caldwell — September 6th, 2011, 1:43 pm


]]>
2011-09-02T23:54:03-05:00 http://www.primothemes.com/forums/viewtopic.php?t=10151&p=33852#p33852 <![CDATA[Re: mailchimp setup question]]>

New Level #1 Members will be subscribed to these List IDs.
Ex: 4a44fRio5d, 434ksvviEdf, 8834jsdf923, ee9djfs4jel3
Or: 4a44fRio5d::Group Title::Group|Another Group

Let me see if I understand...

I could create a MailChimp Group Title called "s2MemberLevel" with possible group names (I wish MailChimp referred to them as "option values") of "Level-0", "Level-1", "Level-2", "Level-3" and "Level-4".

Then, for my Level-1 members, I would enter this in the "List ID(s) for Level #2 Members" box:

Code:
4a44fRio5d::s2MemberLevel::Level-1

And so on.

Is that right?

Statistics: Posted by jdcohan — September 2nd, 2011, 11:54 pm


]]>
2011-09-02T22:40:37-05:00 http://www.primothemes.com/forums/viewtopic.php?t=10151&p=33829#p33829 <![CDATA[Re: mailchimp setup question]]>

(s2Member/s2Member Pro). MailChimp® Interest Groups. Ability to use Interest Groups with Mailchimp List IDs. For examples, please check your Dashboard under: s2Member -> API List Servers -> MailChimp.


So you can try the same list with different groups for the different levels.

Cassel, you can use merge fields with custom capabilities. Look at this thread for more info: viewtopic.php?f=4&t=14727&p=33399#p33399

I hope this helps. :)

Statistics: Posted by Cristián Lávaque — September 2nd, 2011, 10:40 pm


]]>
2011-09-02T16:03:44-05:00 http://www.primothemes.com/forums/viewtopic.php?t=10151&p=33775#p33775 <![CDATA[Re: mailchimp setup question]]>

Statistics: Posted by cassel — September 2nd, 2011, 4:03 pm


]]>
2011-09-02T15:50:27-05:00 http://www.primothemes.com/forums/viewtopic.php?t=10151&p=33770#p33770 <![CDATA[Re: mailchimp setup question]]>
I understand the risk of sending a message to people who shouldn't get the message. But I don't see how maintaining separate lists for different membership levels helps avert the problem in your scenario.

More to the point, the downsides of maintaining multiple lists are many and significant. (You mentioned one: having to send the same message multiple times to multiple lists.) MailChimp itself urges using a single list with Groups and Segmenting. They endorse separate lists only for agencies managing e-mail campaigns for multiple clients.

What I'm trying to find out is whether the s2Member API system allows us to work with a single MailChimp list. (The idea is that my list would have a group called s2MemberLevel whose options would include Level_1, Level_2, Level_3, and Level_4.) I'm hoping one of the developers will chime in.

Thanks again.

Statistics: Posted by jdcohan — September 2nd, 2011, 3:50 pm


]]>
2011-09-02T15:33:21-05:00 http://www.primothemes.com/forums/viewtopic.php?t=10151&p=33767#p33767 <![CDATA[Re: mailchimp setup question]]>
Tomorrow, you decide to have a special promotion of your membership for $99/month for only $49, so you want to send to your segment of the list that is NOT already a member. Now, imagine that those who DID purchase last week, got your membership for $89. You always have a risk of clicking the wrong button and send the promo to ALL your list, including those who already joined for a higher price. No fun for those and then you bite your tongue.

I wanted to use a single list with segments, but ended up with separate lists. If i want to send to my ENTIRE mailing list, i send to one list at the time, but twice or three times. And when one person from one list purchases the membership, i move it to the other list. Of course, i do not have a HUGE list to manage so it helps and if i had thousands of names on the lists, i might need to consider another method.

Anyways, it is at least something to consider.

Statistics: Posted by cassel — September 2nd, 2011, 3:33 pm


]]>
2011-09-02T15:10:44-05:00 http://www.primothemes.com/forums/viewtopic.php?t=10151&p=33764#p33764 <![CDATA[Re: mailchimp setup question - SINGLE MC List]]>
Creating SEPARATE LISTS in MailChimp is a bad idea.

Can s2Member integrate with MailChimp when only a SINGLE LIST is used in MailChimp?

Statistics: Posted by jdcohan — September 2nd, 2011, 3:10 pm


]]>
2011-08-11T09:22:22-05:00 http://www.primothemes.com/forums/viewtopic.php?t=10151&p=30491#p30491 <![CDATA[Re: mailchimp setup question - using SINGLE MC list]]>
However, there are some important good-practice reasons for maintaining a SINGLE MailChimp list. Namely, a MailChimp campaign can be sent to ONLY ONE LIST at a time (unless this has changed).

Suppose I use the multiple-list approach. I would have...

1) one MailChimp list for FREE s2Member subscribers;

2) another list for PREMIUM s2Member subscribers;

3) and a third for GENERAL peeps not related to s2Member at all.

I'll certainly want to send some campaigns to EVERYONE. To do so using the multiple-list approach, I'd either have to replicate the campaign and send it 3 times (not great) or copy subscribers from FREE and PREMIUM to GENERAL (also not great, as this creates opportunities for update anomalies).

Therefore (if my premises above are correct), I think it would be ideal to put all s2Members into my single GENERAL MailChimp list and use MailChimp's grouping / segmentation features for my campaigns.

Does this make sense? Is there a way to configure the s2Member-to-MailChimp integration to handle this without my having to manually modify the group settings in MailChimp?

TIA,
Jeff

Statistics: Posted by jdcohan — August 11th, 2011, 9:22 am


]]>
2011-06-14T16:53:32-05:00 http://www.primothemes.com/forums/viewtopic.php?t=10151&p=20731#p20731 <![CDATA[Re: mailchimp setup question]]> Statistics: Posted by cote289 — June 14th, 2011, 4:53 pm


]]>
2011-06-14T16:50:27-05:00 http://www.primothemes.com/forums/viewtopic.php?t=10151&p=20730#p20730 <![CDATA[Re: mailchimp setup question]]>
I use it, it works flawlessly, allowing you to market to your FREE members and get them to upgrade. They will only ever appear on ONE list thanks to S2Member.

Statistics: Posted by rossagrant — June 14th, 2011, 4:50 pm


]]>
2011-06-14T16:21:54-05:00 http://www.primothemes.com/forums/viewtopic.php?t=10151&p=20727#p20727 <![CDATA[mailchimp setup question]]>
Can s2 member pass along what type of member the user is when they sign up so i can segment the list accordingly and market to those "free" users to get them to upgrade?

Or should i have multiple lists, one for free, one for paid?

I'm concerned with the multiple list method as when a member does upgrade, they would still be on both lists and I don't want to go through and have to manually clean any lists.

How have you seen this done well and what should I be thinking about to set this up right the first time?

thanks for the input

Ben...

Statistics: Posted by cote289 — June 14th, 2011, 4:21 pm


]]>