Skip to content

Commit d7271f0

Browse files
committed
Update terms wordings.
1 parent 7c3664a commit d7271f0

File tree

2 files changed

+25
-4
lines changed

2 files changed

+25
-4
lines changed

assets/css/admin.css

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -515,7 +515,10 @@ body.toplevel_page_mailchimp_sf_options {
515515
line-height: 1.25em;
516516
font-weight: 400;
517517
color: var(--mailchimp-color-text);
518-
margin-bottom: 32px;
518+
}
519+
520+
.mailchimp-sf-create-account__body .terms p:last-child {
521+
margin-bottom: 32px;
519522
}
520523

521524
.mailchimp-sf-create-account__body .terms a:hover {

includes/admin/templates/create-account-page.php

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -241,9 +241,27 @@
241241
echo wp_kses(
242242
sprintf(
243243
/* translators: %s - Mailchimp legal pages */
244-
__( 'By clicking the "Activate Account" button, you are creating a Mailchimp account, and you agree to Mailchimp\'s <a href=%1$s target=_blank>Terms of Use</a> and <a href=%2$s target=_blank>Privacy Policy</a>.', 'mailchimp' ),
245-
esc_url( 'https://mailchimp.com/legal/terms' ),
246-
esc_url( 'https://mailchimp.com/legal/privacy' )
244+
__( 'To follow <a href="%1$s" target="_blank">anti-spam laws</a>, your address will appear in the footer of every email you send with Mailchimp. Don\'t have an official business address? Learn about <a href="%2$s" target="_blank">alternatives</a>.', 'mailchimp' ),
245+
esc_url( 'https://mailchimp.com/help/anti-spam-requirements-for-email/' ),
246+
esc_url( 'https://mailchimp.com/help/alternative-physical-address-ideas/' )
247+
),
248+
array(
249+
'a' => array(
250+
'href' => array(),
251+
'target' => '_blank',
252+
),
253+
)
254+
);
255+
?>
256+
</p>
257+
<p>
258+
<?php
259+
echo wp_kses(
260+
sprintf(
261+
/* translators: %s - Mailchimp legal pages */
262+
__( 'By creating an account, you agree to our <a href="%1$s" target="_blank">Terms</a> and have read and acknowledge the <a href="%2$s" target="_blank">Global Privacy Statement</a>.', 'mailchimp' ),
263+
esc_url( 'https://mailchimp.com/legal/terms/' ),
264+
esc_url( 'https://www.intuit.com/privacy/statement/' )
247265
),
248266
array(
249267
'a' => array(

0 commit comments

Comments
 (0)