• Resolved jayperez

    (@jayperez)


    Where can I modify how confirmation/error messages are displayed? Currently, the default is on top of the form which is not ideal when user gets to the bottom to click submit. It looks like nothing is happening.

    Screenshot attached with the section I’m trying to move below the CTA.

    Thank you in advance.

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Me too

    Plugin Author Brevo

    (@neeraj_slit)

    Hi @jayperez & @emsieh

    Thank you both for your message. I will look into this and get back to you here as soon as I can confirm either way.

    Thank you!

    Plugin Author Brevo

    (@neeraj_slit)

    Hi @jayperez & @emsieh,

    To change the position of the validation messages you need to make some changes to the Plugin file: wp-content/plugins/mailin/sendinblue.php

    From this:

    <div class=”sib_signup_box_inside_<?php echo esc_attr( $frmID ); ?>”>
    <div style=”/*display:none*/” class=”sib_msg_disp”>
    </div>
    <?php
    echo stripcslashes($formData[‘html’]);
    ?>
    </div>

    To this:

    <div class=”sib_signup_box_inside_<?php echo esc_attr( $frmID ); ?>”>
    <?php
    echo stripcslashes($formData[‘html’]);
    ?>
    <div style=”/*display:none*/” class=”sib_msg_disp”>
    </div>
    </div>

    Line Number: 573 to 579

    Recording of behavior after change: https://www.loom.com/share/d04e80df528d4d8c99cc1fde55cbda3d

    Note: The change will be removed after updating the plugin so you will need to make these changes again after any future updates.

    Best regards,
    Sendinblue Customer Care

    Thread Starter jayperez

    (@jayperez)

    @neeraj_slit This is perfect, thank you!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Changing where confirmation messages are displayed’ is closed to new replies.