Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save CartHookSupport/063b2f4cf006d71749b35238df840126 to your computer and use it in GitHub Desktop.
Save CartHookSupport/063b2f4cf006d71749b35238df840126 to your computer and use it in GitHub Desktop.
Script to Uncheck Marketing Emails Opt-in on the Checkout Page
CH.event(function (event, data) {
if (event === 'INITIATED_PAGE') {
$('#buyer_accepts_marketing').prop('checked', false);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment