Support

Account

Home Forums Backend Issues (wp-admin) Disable ACF save when I "update" a post in admin Reply To: Disable ACF save when I "update" a post in admin

  • Hi @mosdefcon,

    Thanks for the post.

    Perhaps the issue is with the creation of post revisions.

    I would recommend you turn off post revisions in your wp-config.php file through the following code:

    define('AUTOSAVE_INTERVAL', 300 ); // seconds
    
    define('WP_POST_REVISIONS', false );