Follow Below steps to fix the Elementor loading issue:
- Go to wordpress website dashboard.
- Install & activate File Manager Plugin
- Select wp-config.php file and right click and open in content Editor.
- Paste below code just below the line $table_prefix = ‘wp_’;
- 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');