Hello
We are testing Helix 2.0.6 with the component RS TicketsPro (same version as used on the joomla.org website) and it appears that Helix is not compatible with latest version of RSTicketsPro (for joomla 3 and 4)
We have css and bootstrap issues with Bootstrap 5 that are not fixed by Helix. Some components use Bootstrap 2.3 on joomla 3 and only bootstrap 5 on joomla 4, but as Helix 2.0.6 sticks to Bootstrap 5 for everything, this does not work
For instance tabs and accordions are not displayed at all.
Could it be possible to edit this kind of code using helix framework ??
public function render()
{
$active = reset($this->titles);
echo JHtml::_('bootstrap.startTabSet', $this->id, array('active' => $active->id));
foreach ($this->titles as $i => $title)
{
echo JHtml::_('bootstrap.addTab', $this->id, $title->id, JText::_($title->label));
echo $this->contents[$i];
echo JHtml::_('bootstrap.endTab');
}
echo JHtml::_('bootstrap.endTabSet');
}
Do you mind to have a look with your own set up ?
Regards
Jean