musosoft
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Plugins
In reply to: [WooCommerce] missing category in category widgetHi @m155y5,
Yes I tried to disable everything but WC also. I just deleted the category and recreated it again which resolved the issue for now. But as it wasn’t the first time this happened I will keep an eye on this and will let you know if this happens again.
Thank you for your support 🙂
Forum: Plugins
In reply to: [WooCommerce] missing category in category widgetHi @m155y5,
Tried all suggestions. Still the same 🙁
Forum: Plugins
In reply to: [WooCommerce] missing category in category widgetHi @m155y5,
Thanks! Almost forgot about this trick 🙂 it didn’t help though…In case someone comes here from Google…
In my case, the reason for this error was that my theme included an old version of the Redux framework which pointed to deprecated reduxframework.com domain.Solutions:
- Ask your theme developer to upgrade Redux framework.
- Install Redux framework plugin to override the old version in your theme.
- Add below code to your functions.php to disable Redux Dashboard Widget:
// Remove dashboard widget function redux_remove_dashboard_widget() { remove_meta_box( 'redux_dashboard_widget', 'dashboard', 'side' ); } add_action( 'wp_dashboard_setup', 'redux_remove_dashboard_widget', 100 );
Viewing 4 replies - 1 through 4 (of 4 total)