We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
For solve CORS policy on your WordPress with Elementor You can add the code to start of wp-config.php file. (code below)
wp-config.php
$http_origin = $_SERVER['HTTP_ORIGIN']; if ($http_origin == "http://www.domain1.com" || $http_origin == "http://www.domain2.com" || $http_origin == "http://www.domain3.com") { header("Access-Control-Allow-Origin: $http_origin"); }
Note: replace domain names ;)