Thank you for the update, i changed my custom themes location of the .po files from “Author” to “Custom” and then it loaded in.
To make woocommerce work i had to go to the plugins .po files and change the location from “System” to “Custom” aswell.
To anyone who also unfortunately had this happen in a production environment.
Add this to prevent automatic updates wp-config.php
define( ‘AUTOMATIC_UPDATER_DISABLED’, true );
define( ‘WP_AUTO_UPDATE_CORE’, false );
And in functions.php
add_filter( ‘auto_update_theme’, ‘__return_false’ );
add_filter( ‘auto_update_plugin’, ‘__return_false’ );
Some of these may overlap, but you can never be too sure with wordpress, mine decided to update in production even when I only had the “automatic updater disabled” checked. So now i added them all 🙂
are you using WordPress version 6.7?
That version just broke the plugin including packages from plugins like woocommerce and the developer of loco is working on a fix. We are all waiting for an update.