your website admin panel access details
and oxwall.org access details
your website admin panel access details
and oxwall.org access details
I have licences for the others but IL try remove them and see if the problem stops
IL then re-upload them and see if I get it and try put the licences in for them
If a themes is not enabled it should not be checking the licence for it
Please try this:
in ow_system_plugins/base/bol/storage_service.php
on line 531
you have this code:
else if ( $this->isItemLicenseCheckPeriodExpired($item->getLicenseCheckTimestamp()) )
{
if ( $type == self::URI_VAR_ITEM_TYPE_VAL_THEME && $this->themeService->getSelectedThemeName() )
{
$this->themeService->setSelectedThemeName(BOL_ThemeService::DEFAULT_THEME);
}
please replace this line:
if ( $type == self::URI_VAR_ITEM_TYPE_VAL_THEME && $this->themeService->getSelectedThemeName() )
with this one:
if ( $type == self::URI_VAR_ITEM_TYPE_VAL_THEME && $this->themeService->getSelectedThemeName() == $item->getKey() )
the issue should be fixed by applying this change
Please keep us updated.