Skip to content

Commit

Permalink
Update terms wordings.
Browse files Browse the repository at this point in the history
  • Loading branch information
iamdharmesh committed Sep 5, 2024
1 parent 7c3664a commit d7271f0
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 4 deletions.
5 changes: 4 additions & 1 deletion assets/css/admin.css
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,10 @@ body.toplevel_page_mailchimp_sf_options {
line-height: 1.25em;
font-weight: 400;
color: var(--mailchimp-color-text);
margin-bottom: 32px;
}

.mailchimp-sf-create-account__body .terms p:last-child {
margin-bottom: 32px;
}

.mailchimp-sf-create-account__body .terms a:hover {
Expand Down
24 changes: 21 additions & 3 deletions includes/admin/templates/create-account-page.php
Original file line number Diff line number Diff line change
Expand Up @@ -241,9 +241,27 @@
echo wp_kses(
sprintf(
/* translators: %s - Mailchimp legal pages */
__( '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' ),
esc_url( 'https://mailchimp.com/legal/terms' ),
esc_url( 'https://mailchimp.com/legal/privacy' )
__( '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' ),
esc_url( 'https://mailchimp.com/help/anti-spam-requirements-for-email/' ),
esc_url( 'https://mailchimp.com/help/alternative-physical-address-ideas/' )
),
array(
'a' => array(
'href' => array(),
'target' => '_blank',
),
)
);
?>
</p>
<p>
<?php
echo wp_kses(
sprintf(
/* translators: %s - Mailchimp legal pages */
__( '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' ),
esc_url( 'https://mailchimp.com/legal/terms/' ),
esc_url( 'https://www.intuit.com/privacy/statement/' )
),
array(
'a' => array(
Expand Down

0 comments on commit d7271f0

Please sign in to comment.