• Currently when submitting the form successfully, the message is broken English, ‘Succeed :Your details are submitted successfully!’ Where can I can change this message?

    I’ve looked in the php file and the dashboard settings but nothing for this. Also i want to change ‘Email id’ to just ‘Email’ (noone calls an email address an ’email id’ in Britain)

    If anyone could guide me that would be great.

    https://wordpress.org/plugins/responsive-contact-form/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter jfarr13

    (@jfarr13)

    Answered my own question, the above settings are in /includes/ai-contact-form-template.php

    Plugin Author August Infotech

    (@augustinfotech)

    Hello jfarr13,

    If you want to change contact form success message then please go to the this file \wp-content\plugins\responsive-contact-form\include\ai-contact-form-template.php.

    In that file please find below code.. I think its at 101 and 208 line in that file. Put your message at that line.

    $data .= ‘<div class=”alert alert-success” id=”smsg” style=”display:none”>’.__(“Succeed :Your details are submitted successfully!”,”aicontactform”).'</div>’;

    Also if you want to change ‘Email id’ to just ‘Email’ please replace code at line 120 with this below code in that file.

    $data .= ‘
    <div class=”control-group”>
    <label class=”control-label” for=”ai_email”>’.__(‘Email’,’aicontactform’).'<span class=”req”>*</span></label>
    <div class=”controls”>
    <input id=”ai_email” maxlength=”255″ name=”ai_email” title=”‘.__(‘Email’,’aicontactform’).'” type=”text” class=”input-xlarge email required”>
    </div>
    </div>’;

    Thanks & Regards,
    August Infotech

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Chnane success message’ is closed to new replies.