Page 1 of 1
PhocCart products view in the backend
Posted: 20 Apr 2026, 17:40
by uwes2025
Hi, I'm not sure if this problem exists since I've updated Joomla from 6.0.4 to 6.1.0, but in backend I have now an unfamiliar look of the product detail view in the backend. Only 3 tabs (options, image options, attributes) are visible, the content of the missing tabs is visible as list at the end of the tab "options"
Whe I want to create a new product all tabs are visible.

Is this because of Joomla 6.1.0?
Best regards Uwe
Re: PhocCart products view in the backend
Posted: 20 Apr 2026, 22:19
by Nidzo
I can confirm this behaviour.
Joomla 6.1.0
Phoca Cart 6.1.0 Beta10
Re: PhocCart products view in the backend
Posted: 21 Apr 2026, 17:53
by Jan
Hi, I am testing it now but don't get any such behaviour (maybe I have different settings for subforms that you have)
As Benno suggested me, this can be related to this problem:
https://github.com/joomla/joomla-cms/pull/47617
As suggested there, try to change this file:
layouts/joomla/form/field/subform/repeatable/section-byfieldsets.php
https://github.com/joomla/joomla-cms/pull/47617/files
and let me know if this helps.
Thank you, Jan
Re: PhocCart products view in the backend
Posted: 21 Apr 2026, 18:47
by Jan
CONFIRMED - it is caused by this Joomla bug:
https://github.com/joomla/joomla-cms/pull/47617/files
So, just open the file:
layouts/joomla/form/field/subform/repeatable/section-byfieldsets.php
and change (line cca 48)
FROM:
Code: Select all
<fieldset class="<?php echo !empty($fieldset->class) ? $this->escape($fieldset->class) : ''; ?>"
<?php if (!empty($fieldset->label)) : ?>
<legend><?php echo Text::_($fieldset->label); ?></legend>
<?php endif; ?>
<?php foreach ($form->getFieldset($fieldset->name) as $field) : ?>
<?php echo $field->renderField(); ?>
<?php endforeach; ?>
</fieldset>
TO:
Code: Select all
<?php $class = !empty($fieldset->class) ? ' class="' . $this->escape($fieldset->class) . '"' : ''; ?>
<fieldset<?php echo $class; ?>>
<?php if (!empty($fieldset->label)) : ?>
<legend><?php echo Text::_($fieldset->label); ?></legend>
<?php endif; ?>
<?php foreach ($form->getFieldset($fieldset->name) as $field) : ?>
<?php echo $field->renderField(); ?>
<?php endforeach; ?>
</fieldset>
This will solve the problem with tabs.
Re: PhocCart products view in the backend
Posted: 21 Apr 2026, 21:48
by Nidzo
Thanks Jan!
Re: PhocCart products view in the backend
Posted: 23 Apr 2026, 11:40
by uwes2025
Hey Jan, great, thankyou! It works!
Best regards Uwe
Re: PhocCart products view in the backend
Posted: 25 Apr 2026, 14:39
by Jan
Ok, great to hear it.
Jan