Elementor Loading Problem | Elementor Not Working | Elementor Enable Safe Mode Issue | 100% Fix

  • April 3, 2022
  • administrator
  • 1 min read

Follow Below steps to fix the Elementor loading issue:

  1. Go to wordpress website dashboard.
  2. Install & activate File Manager Plugin
  3. Select wp-config.php file and right click and open in content Editor.
  4. Paste below code just below the line $table_prefix = ‘wp_’;
  5. Save changes and refresh the page.
/* Paste below code just above $table_prefix = 'wp_'; */

define('WP_DEBUG', false);
define('WP_HTTP_BLOCK_EXTERNAL', false);
define('FS_METHOD', 'direct');
define('DISABLE_WP_CRON', true);
define('WP_MEMORY_LIMIT', '256M');
define('WP_CACHE', true);
define('WP_ALLOW_REPAIR', true);
require_once(ABSPATH.'wp-settings.php');
add_filter('auto_update_plugin', '_return_false');
add_filter('auto_update_theme', '_return_false');
define('WP_AUTO_UPDATE_CORE', 'major');