Disable the Theme Updater
Activating your theme license enables update checks for the theme. These checks communicate with our server whenever WordPress performs update requests.
If you use a staging site for testing updates, you can apply this snippet to disable update checks on the live domain.
add_filter( 'totaltheme/updates/theme_updater/is_enabled', '__return_false' );All PHP snippets should be added via child theme's functions.php file or via a plugin.
We recommend Code Snippets (100% Free) or WPCode (sponsored)
We recommend Code Snippets (100% Free) or WPCode (sponsored)
Related Snippets