Home / Archive / MemberPress: Change the Text and URL of the Mailchimp Privacy Link in MemberPress
Duplicate Snippet

Embed Snippet on Your Site

MemberPress: Change the Text and URL of the Mailchimp Privacy Link in MemberPress

This code snippet modifies the text and URL of the Mailchimp privacy link displayed by MemberPress.

The sample code will modify the default text to the Our Privacy Policy text. The text will be linked to the page with the https://yourdomain.com/custom-privacy-policy URL.

The code should be modified by replacing the dummy https://yourdomain.com/custom-privacy-policy URL with the actual URL to which the text should be linked. The URL can be updated on these lines:

$('.mepr-mailchimp-privacy-link').attr('href', 'https://yourdomain.com/custom-privacy-policy');

In addition, to change the link text, replace the Our Privacy Policy text with the desired text, on this line:

$('.mepr-mailchimp-privacy-link').text('Our Privacy Policy');

Code Preview
php
<?php
add_action( 'wp_head', function() { ?>
<script>
(function($) {
  $(document).ready(function() {
    // Change the text of the Mailchimp privacy link
    $('.mepr-mailchimp-privacy-link').text('Our Privacy Policy');
    
    // Change the URL of the Mailchimp privacy link
    $('.mepr-mailchimp-privacy-link').attr('href', 'https://yourdomain.com/custom-privacy-policy');
  });
})(jQuery);
</script>
<?php } );

Comments

Add a Comment