полей?
я понимаю, что $item->jcfields содержит, но это надо знать айдишник, а если айдишник не совпадёт, лучше по имени, как по мне, так вот, как вы зи ситуации выходите?
https://docs.joomla.org/J3.x:Adding_custom_fields/Overrides/en
Then, to enable direct access by name to custom fields in a override, place the code below at the beginning of your file. You should do this to every override PHP file that you want to place individual custom fields on. <?php foreach($item->jcfields as $jcfield) { $item->jcFields[$jcfield->name] = $jcfield; } ?> And lastly, you should add the field placement code at the spot you want the field label or value to be shown. To add the label of the field to your override, insert the code below, replacing name-of-field with the name of the field. <?php echo $item->jcFields['name-of-field']->label; ?>
Обсуждают сегодня