The trend of the last years has been to create websites in 2 main colors, this forced us to create new color names from helix ultimate 1, in which it was easy to edit any color that could be added.
With the arrival of version 2.0.0 we were given the possibility to edit preset colors like in helix 3, but you couldn't edit custom colors, because the file that controls the colors to edit is in /plugins/system/helixultimate /src/form/preset.xml, from the Beta version request that we be given the possibility to load the preset.xml from the template, and to my joy and that of many this was introduced in version 2.0.6. But in version 2.0.7 they have removed it again. So my questions are:
Has it been accidentally removed and will it be redeployed in the future?
They did a deeper analysis and this will not be implemented anymore?
The modified file is /plugins/system/helixultimate/src/Platform/Settings.php on line 277 and the code that gives us the ability to read custom colors from presets.xml inside the template is as follows.
$template = Helper::loadTemplateData();
$presetForm = new Form('preset');
$presetFormPath = JPATH_PLUGINS . '/system/helixultimate/src/form/preset.xml';
$templatePresetFormPath = JPATH_ROOT . '/templates/' . $template->template . '/preset.xml';
if (\file_exists($templatePresetFormPath))
{
$presetFormPath = $templatePresetFormPath;
}
Please fix soon or let know us if it be implemented in a future or not.