Skip to main content
July 10, 2013
Question

Unsubscribe all - check all options

  • July 10, 2013
  • 2 replies
  • 1016 views
 I set up a new dynamic subscription management page with different options to unsubscribe from. Everything seems to be working properly, but i was just wondering if anyone knows the code to input so that when someone clicks "unsubscribe all" it will automatically check off every other option? Suggestions?
This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

2 replies

July 10, 2013
I think this recorded webinar is what you're looking for. It shows how you can include multiple unsubscribe options with a "unsubscribe all" field that overrides the others:

https://community.marketo.com/MarketoArticle?id=kA050000000KyuKCAS


July 10, 2013
Kelly,

You're welcome to steal it from our Subscription Center here: revmarketer.pedowitzgroup.com/SubscriptionManagement.html

You'll need to customize it for your needs. Here is the code we used:

$jQ("#Unsubscribed").click(function() {
if ($jQ('#Unsubscribed:checked').val() != null) {
$jQ("input[name=Subscribed__c],input[name=Subscribed_Webinars__c],input[name=Revenue_Marketer_Series__c],input[name=Subscription-Suspendfor90Days]").attr("checked", false);
}