the following “if” statement around line 174 and 175 of the file /wp-content/plugins/elementor-pro/license/api.php and it seems to have solved the issue in PHP 8.0. I was having the same exact problem as you after upgrading. I realize it’s not ideal to edit plugin files, but when the vendor response is lagging, bandaids like that can help get the site up, at least.
if (is_array($requests_lock)):$requests_lock[ $name ] = time();update_option( self::REQUEST_LOCK_OPTION_NAME, $requests_lock );endif;
found this solution from here
if you have elementor version controle or php version issue you can try this code.
Post a Comment