Change confirmation message after submission

Support MB Frontend Submission Change confirmation message after submission

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #9420
    calpaqcalpaq
    Participant

    Dear support,

    I want to change only confirmation message, can you please help me, I have tried following but not successfull

    add_filter ('rwmb_frontend_after_form', 'emnsh_rwmb_frontend_before_display_confirmation');
    function emnsh_rwmb_frontend_before_display_confirmation($config){
        $config['confirmation'] = 'Your lead has been successfully submitted. Thank you.';
        return $config;
    }

    and

    add_action ('rwmb_frontend_after_process','emnsh_rwmb_frontend_after_process',10,2);
    function emnsh_rwmb_frontend_after_process($config, $post_id){
             $config['confirmation'] = 'Your lead has been successfully submitted. Thank you.';
    }

    Thanks

    #9427
    Anh TranAnh Tran
    Keymaster

    Hi,

    Why don't you use the confirmation attribute of the shortcode? It's much easier and no coding required.

    #9428
    calpaqcalpaq
    Participant

    Thanks, Problem solved

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Change confirmation message after submission’ is closed to new replies.