• Hi, I just put the MailChimp WordPress Login on my site. I would like to know where I can go to change the font, colors and text for the messages, such as: Changing “unsubscribe” to “Unsubscribe” and “That email address is already subscribed to the list. Click here to update your profile”

    Thank you.

    https://www.ads-software.com/plugins/mailchimp/

Viewing 1 replies (of 1 total)
  • Hi there Amy_Beth,

    To change style elements of the error/success responses, in the mailchimp.php file find and edit the following code:

    function mailchimpSF_main_css() {
    ?>
    .mc_error_msg {
    color: red;
    margin-bottom: 1.0em;
    }
    .mc_success_msg {
    color: green;
    margin-bottom: 1.0em;
    }

    Changing the “red” and “green” there will allow you to have different colors for the response (error and success) messages displayed on your widget form. Additional CSS elements can be added to further customize those messages’ appearance.

    To change the response message texts themselves, locate // Custom validation based on type in the mailchimp.php file. the following lines will contain error responses, and the success response follows $msg = "<strong class='mc_success_msg'>".

    You can locate and edit the unsubscribe link text by locating <?php esc_html_e('unsubscribe from list', 'mailchimp_i18n'); ?> in mailchimp_widget.php. Edits made to “unsubscribe from list” will be reflected when the Unsubscribe link is being displayed. You can also turn this link off (to not display it) from the plugin settings page.

    Let me know if there’s anything else I can assist with!

    -Kath

Viewing 1 replies (of 1 total)
  • The topic ‘Editing Messages’ is closed to new replies.