Title: [acfe_form(array(&#8230;] Form settings cannot be overridden.
Last modified: September 15, 2021

---

# [acfe_form(array(…] Form settings cannot be overridden.

 *  Resolved [t.maruya](https://wordpress.org/support/users/tmaruya/)
 * (@tmaruya)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/acfe_formarray-form-settings-cannot-be-overridden/)
 * I wrote the following code in the template.
 *     ```
       acfe_form(array(
       	'name'	=> $jigyo_acfe_id,
       	'acfe_form_submit_value'=> "TEST",
       ));
       ```
   
 * The’name’ specification is working correctly.
    However, the specification of’acfe_form_submit_value’is
   not overwritten. Is there something wrong with my description?

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

 *  Plugin Author [Konrad Chmielewski](https://wordpress.org/support/users/hwk-fr/)
 * (@hwk-fr)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/acfe_formarray-form-settings-cannot-be-overridden/#post-14876799)
 * Hello,
 * Thanks for the feedback!
 * Sorry, the “Override Settings” examples in the documentation were wrong. The 
   setting name you’re looking for is `submit_value`, so your form function should
   look like this:
 *     ```
       acfe_form(array(
           'name'	   => $jigyo_acfe_id,
           'submit_value' => 'TEST',
       ));
       ```
   
 * I just updated the [Form Integration](https://www.acf-extended.com/features/modules/dynamic-forms/integration)
   examples with the correct names. I also added a [Settings Cheatsheet](https://www.acf-extended.com/features/modules/dynamic-forms/integration#settings-cheatsheet)
   section to show all available Forms settings.
 * Hope it helps!
 * Have a nice day!
 * Regards.
 *  Thread Starter [t.maruya](https://wordpress.org/support/users/tmaruya/)
 * (@tmaruya)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/acfe_formarray-form-settings-cannot-be-overridden/#post-14880386)
 * Hello,
 * Thank you for answering.
    This Settings Cheatsheet is exactly what I’ve been 
   waiting for. This is a great response.
 * “Submit button” not found on the Cheatsheet.
    This can be set in “Dynamic Form/
   Settings”. Can this item be overwritten?
    -  This reply was modified 4 years, 8 months ago by [t.maruya](https://wordpress.org/support/users/tmaruya/).
 *  Plugin Author [Konrad Chmielewski](https://wordpress.org/support/users/hwk-fr/)
 * (@hwk-fr)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/acfe_formarray-form-settings-cannot-be-overridden/#post-14880569)
 * Hello,
 * The “Submit Form” default value in the Form Admin UI is:
 *     ```
       <input type="submit" class="acf-button button button-primary button-large" value="%s" />
       ```
   
 * As you can see on the [Settings Cheatsheet](https://www.acf-extended.com/features/modules/dynamic-forms/integration#settings-cheatsheet),
   the setting that use this value is named `html_submit_button`.
 * Hope it helps!
 * Regards.

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

The topic ‘[acfe_form(array(…] Form settings cannot be overridden.’ is closed to
new replies.

 * ![](https://ps.w.org/acf-extended/assets/icon-256x256.png?rev=2071550)
 * [Advanced Custom Fields: Extended](https://wordpress.org/plugins/acf-extended/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/acf-extended/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/acf-extended/)
 * [Active Topics](https://wordpress.org/support/plugin/acf-extended/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/acf-extended/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/acf-extended/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [Konrad Chmielewski](https://wordpress.org/support/users/hwk-fr/)
 * Last activity: [4 years, 8 months ago](https://wordpress.org/support/topic/acfe_formarray-form-settings-cannot-be-overridden/#post-14880569)
 * Status: resolved