The calendar still doesn't want to appear on the site. But I've found out an error:
"Array to string conversion in C:\wamp64\www\bastion\libraries\joomla\form\fields\list.php on line 213"
What should I change in the code?
if (!is_null($value))
{
$value = (string) $value;
foreach ($options as $option)
{
if ($option->value === $value)
{
$value = $option->text;
break;
}
}
$tmp->text = JText::sprintf('JGLOBAL_USE_GLOBAL_VALUE', $value);
}