Hi Again,
We hacked the jevents Resource plugin to make it work:
There are the 2 changes needed to make it work:
#1
This issue manifests as a JS error. The problem is that the jevents library that handles popups isn’t loaded in the php section so it never registers the js file to be loaded on the client.
The solution loads the module and the calls a method to register the script.
File: /administrator/components/com_jevents/views/icalevent/tmpl/edit_uikit.php
Line: ~49
Add:
JLoader::register('JevModal', JPATH_LIBRARIES . "/jevents/jevmodal/jevmodal.php");
JevModal::framework();
#2
This issue results in an error within the popup when selecting resources. The error message was something like “;JEventsHelper' class not found“.
The solution is to simply load the class.
File: \administrator\components\com_jevpeople\controllers\people.php
Line #: ~41
Add: (line after “PluginHelper …“)
JLoader::register('JEventsHelper', JPATH_ADMINISTRATOR . "/components/com_jevents/helpers/jevents.php");
We are going to the production with the hack, but can you fix it in the new release?