Title: submit button
Last modified: August 22, 2016

---

# submit button

 *  [Adriana08](https://wordpress.org/support/users/adriana08/)
 * (@adriana08)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/submit-button-21/)
 * hi there
 * How to change the text in the submit button?
 * [https://wordpress.org/plugins/contact-forms/](https://wordpress.org/plugins/contact-forms/)

Viewing 4 replies - 1 through 4 (of 4 total)

 *  Plugin Author [cimatti](https://wordpress.org/support/users/cimatti/)
 * (@cimatti)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/submit-button-21/#post-5844881)
 * Go to the “Fields” page. Add a new field making sure to select “Submit button”
   from as field type. Drag this new field at the end of the form you are creating.
   That way you will override the default submit button and you will be able to 
   change the text as you wish.
 *  Thread Starter [Adriana08](https://wordpress.org/support/users/adriana08/)
 * (@adriana08)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/submit-button-21/#post-5844961)
 * Thank you very much. 🙂
    And is it possible to create a new field, where only
   ciphers (mobile no.) are alowed?
 *  Thread Starter [Adriana08](https://wordpress.org/support/users/adriana08/)
 * (@adriana08)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/submit-button-21/#post-5845024)
 * ?
 *  Plugin Author [cimatti](https://wordpress.org/support/users/cimatti/)
 * (@cimatti)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/submit-button-21/#post-5845085)
 * Currently it’s not possible without a bit of code.
 * If you can understand PHP, or if you can hire a programmer, you have to create
   a simple plugin with some code like this:
 *     ```
       add_filter('accua_form_validate', 'my_validate_function', 10, 4);
       function my_validate_function($valid, $submittedID, $submittedData, AccuaForm $form){
         if (isset($submittedData['my_field_id'])) {
           if (!preg_match['/[0-9]+/', $submittedData['my_field_id']]) {
             $valid = false;
             $form->setFormError('You have to enter only numbers', 'my_field_id');
           }
         }
         return $valid;
       }
       ```
   

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘submit button’ is closed to new replies.

 * ![](https://ps.w.org/contact-forms/assets/icon.svg?rev=2947119)
 * [Contact Forms by Cimatti](https://wordpress.org/plugins/contact-forms/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/contact-forms/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/contact-forms/)
 * [Active Topics](https://wordpress.org/support/plugin/contact-forms/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/contact-forms/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/contact-forms/reviews/)

 * 4 replies
 * 2 participants
 * Last reply from: [cimatti](https://wordpress.org/support/users/cimatti/)
 * Last activity: [11 years, 1 month ago](https://wordpress.org/support/topic/submit-button-21/#post-5845085)
 * Status: not resolved