- Status
- Resolved
- Reported for
- WPML Multilingual & Multicurrency for WooCommerce 4.12.6
- Resolved in
- 5.0.0
- Related plugin/theme
- WooCommerce Payments
Overview of the issue
If you are using WooCommerce Payments together with WPML Multilingual & Multicurrency for WooCommerce, you may see this warning in your Dashboard:
WooCommerce Payments requires WooCommerce Admin to be enabled. Please remove the woocommerce_admin_disabled filter to use WooCommerce Payment
Workaround
Our developers are working on it and it will be fix soon. In the meantime you can apply this workaround after applying a full backup of your site.
- Open your functions.php theme file.
- Add the following code:
add_action( 'current_screen', function() { remove_all_filters( 'woocommerce_admin_disabled' ); }, 20, 1 );