Link to other issue:
https://groups.google.com/forum/#!searchin/myeventon/https/myeventon/8-hIXjDH4Hg/gHj6UQARGeoJ
When you view source while in WP Admin you can see it is loading all EventON resources from a http address while all other themes and plugins from https (SSL).
While I haven't done so, I'd imagine if I look, I could find where this is coming from, and fix it. But the problem is going to be when IT updates the plugin, and my changes are lost.
Are there any plans on rectifying this issue?
http://wordpress.org/ideas/topic/wp_plugin_url-doesnt-take-ssl-into-account
... WP_PLUGIN_URL doesn't take SSL into account and this link...
https://core.trac.wordpress.org/ticket/13941
... says that site_url() function should be used instead.
I have found that in eventon.php [line 25] we have:
define( "AJDE_EVCAL_URL", path_join(WP_PLUGIN_URL, basename(dirname(__FILE__))) );
so instead of site_url() I used plugins_url():
define( "AJDE_EVCAL_URL", path_join(plugins_url(), basename(dirname(__FILE__))) );
and it works! Could you please update EventON to include this in future updates to support SSL? Thanks!