Notice : Array to string conversion on array_intersect user meta
Notice : Array to string conversion on array_intersect user meta
Notice : Array to string conversion on array_intersect user meta
No debug log for WP multisite is created
What I do, when I’m developing a plugin (or theme) on a local WordPress install and I’m feeling lazy, I just use a combination of var_dump($my_variable); die; // exit; works too This way I get an idea whats going on and I see when the variable stops being what I expect it to be. Another … Read more
If nothing has been placed into your shortcode “wpv-current-user”, you won’t see anything in any of your output. You should use the built-in function wp_get_current_user() for this. Just beware that the Codex page warning. This may need to be called within an action that fires with or after the ‘init’ hook. I have modified your … Read more
May be the active theme is overridden. Check the ‘option_name’ => ‘current_theme’ value in wp_options . Is the option_value the same as your active theme name? Try activating your theme also hope it helps..
Debug a WP install: how to find which functions write post updates during a process (a woocommerce checkout in my case)
How to trace errors in debug.log for WooCommerce 3.0?
You have to search for this function. It can be in theme or plugin. Last parameter for this function is an integer which determines where the menu should appear in wp-admin.
Found my problem, was actually not even a plugin conflict but an optimisation operation that had broke the plugins! I added a couple days ago a script in functions.php that would “defer” all the scripts, which made important scripts being loaded after they were being executed. Thanks for the help.
I am not a real dev, but which helps me in some cases: “Query Monitor”. After all, I think you have to start searching backward, step by step and dive into each function.