Confirmation message in another div

Support MB User Profile Confirmation message in another divResolved

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #20490
    netalysnetalys
    Participant

    Hello ! Is it possible to display the confirmation message in another div ?
    So when the user save the info, the message is not displayed above the form but elsewhere in the page.

    Thanks !

    #20497
    Long NguyenLong Nguyen
    Moderator

    Hi,

    You can use the JavaScript code below to move the confirmation message to another div/class.

    jQuery(document).ready(function($) {            
        var userProfileConfirm = $('.rwmb-confirmation');
        if (userProfileConfirm.length > 0) {
            userProfileConfirm.remove();
            $('footer').append(userProfileConfirm);
        }
    });

    See my screenshot https://share.getcloudapp.com/p9uPkoxD.

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.