Title: Front end form submit button missing
Last modified: January 6, 2021

---

# Front end form submit button missing

 *  Resolved [vfineide](https://wordpress.org/support/users/vfineide/)
 * (@vfineide)
 * [5 years, 4 months ago](https://wordpress.org/support/topic/front-end-form-submit-button-missing/)
 * Hi, the submit-button on front end forms are now missing. When inspecting the
   HTML the wrapper is there, but no button element. It happened the same moment
   I also experienced that multi site “add user” buttons disappeared, but using 
   the code below solved the “add user” button but not the form buttons:
 * add_action(‘acf/init’, ‘my_acfe_modules’);
    function my_acfe_modules(){
 *  // Disable Enhanced UI
    acfe_update_setting(‘modules/ui’, false); }

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

 *  Plugin Author [Konrad Chmielewski](https://wordpress.org/support/users/hwk-fr/)
 * (@hwk-fr)
 * [5 years, 4 months ago](https://wordpress.org/support/topic/front-end-form-submit-button-missing/#post-13873615)
 * Hello,
 * Thanks for the feedback! The Enhanced UI doesn’t change the front-end forms behavior,
   so using the code to disable the module won’t affect it.
 * If you’re using WPMU, please check your ACF Extended Dynamic Forms settings, 
   your “Submit Button” code is most likely empty. This is due to WordPress applying
   special filters to non-super admins users when saving settings that contain HTML
   code.
 * See the explanations & fix in the following topic: [https://wordpress.org/support/topic/submit-button-html-disappears-after-save/#post-12804836](https://wordpress.org/support/topic/submit-button-html-disappears-after-save/#post-12804836)
 * If a non-super admin user save the Dynamic Forms, then the HTML of the “Button
   Code” setting will be filtered (saved as empty).
 * You can use the following code to let non-super admins (yet admin) users save
   HTML settings:
 *     ```
       add_filter('acf/allow_unfiltered_html', 'my_acf_unfiltered_html');
       function my_acf_unfiltered_html($unfiltered){
   
           if(current_user_can('administrator')){
   
               $unfiltered = true;
   
           }
   
           return $unfiltered;
   
       }
       ```
   
 * Hope it helps!
 * Regards.
 *  Thread Starter [vfineide](https://wordpress.org/support/users/vfineide/)
 * (@vfineide)
 * [5 years, 4 months ago](https://wordpress.org/support/topic/front-end-form-submit-button-missing/#post-13873938)
 * Amazing – it worked. I really appreciate!! 🙂
 *  Plugin Author [Konrad Chmielewski](https://wordpress.org/support/users/hwk-fr/)
 * (@hwk-fr)
 * [5 years, 4 months ago](https://wordpress.org/support/topic/front-end-form-submit-button-missing/#post-13874571)
 * Hello,
 * I’m glad to hear that it’s now working as expected!
 * If you enjoy ACF Extended, feel free to [submit a review](https://wordpress.org/support/plugin/acf-extended/reviews/#new-post),
   it always helps and it’s much appreciated 🙂
 * Have a nice day and happy new year!
 * Regards.

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

The topic ‘Front end form submit button missing’ 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: [5 years, 4 months ago](https://wordpress.org/support/topic/front-end-form-submit-button-missing/#post-13874571)
 * Status: resolved