Can I use any of these in my wp-config.php to solve this problem?
Wordpress core updates:
define( ‘WP_AUTO_UPDATE_CORE’, false );
Plugins
add_filter( ‘auto_update_plugin’, ‘__return_false’ );
Theme
add_filter( ‘auto_update_theme’, ‘__return_false’ );
Would I just need to turn off the theme updates to ensure this code is not pulled out again? Any risk of things not working if the theme is not automatically updated?