Community Support Forums — WordPress® ( Users Helping Users ) — 2011-08-31T10:17:08-05:00 http://www.primothemes.com/forums/feed.php?f=4&t=14727 2011-08-31T10:17:08-05:00 http://www.primothemes.com/forums/viewtopic.php?t=14727&p=33508#p33508 <![CDATA[Re: List Server Custom Capabilities]]> Statistics: Posted by sruefer — August 31st, 2011, 10:17 am


]]>
2011-08-30T16:55:50-05:00 http://www.primothemes.com/forums/viewtopic.php?t=14727&p=33399#p33399 <![CDATA[Re: List Server Custom Capabilities]]> Thanks for the follow-up.

OK. The closest I can get you on this right now, is to use MERGE vars for MailChimp.

Here's how I would handle it.
1. Use just one Mailing List at MailChimp for all Members.
2. Log into your MailChimp account and add a new MERGE field to your list, with the name: S2_CCAPS
3. Create this directory and file in your WordPress installation with s2Member installed.

/wp-content/mu-plugins/s2-hacks.php
Code:
<?php
add_filter 
("ws_plugin__s2member_mailchimp_merge_array", "s2_ccaps_merge", 10, 2);
function s2_ccaps_merge ($merge = array (), $vars = array ())
    {
        return array_merge ($merge, array ("S2_CCAPS" => $vars["ccaps"]));
    }
?>

Now, when you send email to your Subscribers, you can filter the list of recipients based on the value of the S2_CCAPS MERGE field. MailChimp allows you to do this. The hack above will automatically fill the value of the S2_CCAPS MERGE field at MailChimp, with a comma-delimited list of the Custom Capabilities that each Member has. This gives you maximum flexibility when you send out your email updates.

Statistics: Posted by Jason Caldwell — August 30th, 2011, 4:55 pm


]]>
2011-08-30T04:23:53-05:00 http://www.primothemes.com/forums/viewtopic.php?t=14727&p=33328#p33328 <![CDATA[Re: List Server Custom Capabilities]]> Statistics: Posted by sruefer — August 30th, 2011, 4:23 am


]]>
2011-08-29T20:05:40-05:00 http://www.primothemes.com/forums/viewtopic.php?t=14727&p=33309#p33309 <![CDATA[Re: List Server Custom Capabilities]]>
Are you working with MailChimp, or with AWeber please?

Statistics: Posted by Jason Caldwell — August 29th, 2011, 8:05 pm


]]>
2011-08-27T05:09:03-05:00 http://www.primothemes.com/forums/viewtopic.php?t=14727&p=33066#p33066 <![CDATA[List Server Custom Capabilities]]>
I noticed that I can only allocate List IDs for Level 0 to Level 4 subscribers, but I cannot differentiate lists between subscribers with different custom capabilities. Is there a workaround for achieving this?

For example, I have custom capabilities for Level 1 subscribers (Basic, Standard, Professional) and I want them to be subscribed to different mailing lists.

Thank you for your help!
Steffen

Statistics: Posted by sruefer — August 27th, 2011, 5:09 am


]]>