-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Followed your How to but still have Issues. #4
Comments
same problem here |
@nicmare take a look here There are filters for allowed_http_origins and add_allowed_origins. You can use them to set the proper Access-Control-Allow-Origin header in the response to your AJAX call. Add this to your theme's functions.php file: add_filter('allowed_http_origins', 'add_allowed_origins');
function add_allowed_origins($origins) {
$origins[] = 'https://www.yourdomain.com';
return $origins;
} |
Hello, I have tried adding the code to the function file but I still get admin-ajax.php results in a 400 when editing the page with Elementor and because of that the left panel from Elementor loads forever. The pages I am trying to edit are on subdomains fr.mydomain.com and ru.mydomain.com Can you help? Thank you, |
Hi,
I followed your hoe to in the video. Elementor is installed, Your Plugin is installed, altered the nginx config w your code but still after switching it keeps spinning the elementor pamel on the left side and says connection lost.
I refreshed the cache. but nothing changes. The console still says that there are issues.
What is needed that you may can help me?
Thanks,
Seb
The text was updated successfully, but these errors were encountered: