Snippets

Visser Labs Turning off save prompt on Field Editor screen

Created by Michael Visser

File functions.php Added

  • Ignore whitespace
  • Hide word diff
+<?php
+function custom_woo_ce_field_editor_save_prompt() {
+
+	// No more prompts on the Field Editor screen
+	return false;
+
+}
+add_filter( 'woo_ce_field_editor_save_prompt', 'custom_woo_ce_field_editor_save_prompt' );
+?>
HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.