Is there any shortcode I have to paste in? Link to the scheduler is set. Private mode is off. Everyone has View access rights.
Here is the page:
Thanks for your assistance.
Is there any shortcode I have to paste in? Link to the scheduler is set. Private mode is off. Everyone has View access rights.
Here is the page:
Thanks for your assistance.
Hi,
you have cross-domain problem so data can’t be loaded.
Please, open file wp-content/plugins/event-calendar-scheduler/codebase/dhtmlxSchedulerConfigurator.php and modify it like here:
...
protected function replaceHostInURL($url) {
return $url;
$url_parsed = parse_url($url);
$host = $_SERVER['SERVER_NAME'];
$url = preg_replace("/".preg_quote($url_parsed['host'])."/", $host, $url, 1);
return $url;
}
...
Still doesn’t work?