Thanks for the help! I suppose it’s working now, not sure yet but we’ll see.
If any one else is struggling with this issue, here is an actual description on what to do:
- create a folder in /wp-content/
- rename it to /mu-plugins/
- inside this folder create a .php file and give it a name
- my-plugin.php will do just fine
In the head of my-plugin.php add the following text:
<?php
/**
* Plugin Name: My Plugin
* Description: Disable automatic translation updates
* Author: rockitman
* License: GNU General Public License v3 or later
* License URI: https://www.gnu.org/licenses/gpl-3.0.html
*/
// Basic security, prevents file from being loaded directly.
defined( 'ABSPATH' ) or die( 'Cheatin’ uh?' );
Below this text paste the following line to prevent automatic language updates from happening:
add_filter( 'auto_update_translation', '__return_false' );
- save the my-plugin.php without the php closing tag at the end
- upload the my-plugin.php to the folder: /wp-content/mu-plugins/
And your done!
This is the entire file structure of my-plugin.php:
<?php
/**
* Plugin Name: My Plugin
* Description: Disable automatic translation updates
* Author: rockitman
* License: GNU General Public License v3 or later
* License URI: https://www.gnu.org/licenses/gpl-3.0.html
*/
// Basic security, prevents file from being loaded directly.
defined( 'ABSPATH' ) or die( 'Cheatin’ uh?' );
add_filter( 'auto_update_translation', '__return_false' );