by Garth | Dec 28, 2019 | Debugging, Wordpress
So for the specificity of this case I was redirecting to the admin dashboard continuously when ever I tried to navigate to the home page.I was logged in as admin. The problem was that I updated my email and this caused a conflict with the site. WordPress wanted me to...
by Garth | Aug 6, 2018 | Debugging, Wordpress
Define(‘WP_SITEURL’,’https://your-site-url’); Define(‘WP_HOME’,’https://your-site-url’); The above code must get added to your wp-config.php File It should fix the redirecting login issue. I left in inside my file after...
by Garth | Jul 16, 2018 | Debugging, PHP, Snippets
ini_set(‘display_errors’, 1); ini_set(‘display_startup_errors’, 1); error_reporting(E_ALL);
by Garth | Jun 12, 2018 | Debugging, PHP, Wordpress
So today a client’s site that had its WordPress version updated (to 4.9.1) started throwing this error when they tried to use the Metaslider plugin to upload new images. Some searching confirmed this was happening to more than a few other people but I did not easily...
by Garth | May 4, 2018 | Debugging, Wordpress
Add this line of code at the top of your child theme function. It should get rid of your error. If not good luck debugging 🙂 wp_enqueue_script(‘jquery’);