да ..создана.. как в примере на сайте..
media\zoo\applications\jbuniversal\templates\catalog\renderer\item\table-item
<positions layout="full">
<position name="title">Title</position>
<position name="image">Image</position>
<position name="text">Text</position>
<position name="properties">Properties</position>
<position name="text">Text</position>
<position name="properties">Properties</position>
<position name="text">Text</position>
<position name="meta">Meta</position>
</positions>
Кстати, может вывод зависит от наименований этих полей. Но я постарался в full.php
media\zoo\applications\jbuniversal\templates\catalog\renderer\item\table-item точно такую же последовательность оставить.
<?php
/**
* JBZoo App is universal Joomla CCK, application for YooTheme Zoo component
*
* @package jbzoo
* @version 2.x Pro
* @author JBZoo App http://jbzoo.com
* @copyright Copyright (C) JBZoo.com, All rights reserved.
* @license http://jbzoo.com/license-pro.php JBZoo Licence
* @coder Denis Smetannikov <denis@jbzoo.com>
*/
// no direct access
defined('_JEXEC') or die('Restricted access');
$align = $this->app->jbitem->getMediaAlign($item, $layout);
?>
<?php if ($this->checkPosition('title')) : ?>
<h1 class="item-title"><?php echo $this->renderPosition('title'); ?></h1>
<?php endif; ?>
<?php if ($this->checkPosition('image')) : ?>
<div class="item-image align-<?php echo $align; ?>">
<?php echo $this->renderPosition('image'); ?>
</div>
<?php endif; ?>
<?php if ($this->checkPosition('text')) : ?>
<?php echo $this->renderPosition('text', array('style' => 'block')); ?>
<?php endif; ?>
<?php if ($this->checkPosition('properties')) : ?>
<ul class="item-properties">
<?php echo $this->renderPosition('properties', array('style' => 'list')); ?>
</ul>
<?php endif; ?>
<?php if ($this->checkPosition('text')) : ?>
<?php echo $this->renderPosition('text', array('style' => 'block')); ?>
<?php endif; ?>
<?php if ($this->checkPosition('properties')) : ?>
<ul class="item-properties">
<?php echo $this->renderPosition('properties', array('style' => 'list')); ?>
</ul>
<?php endif; ?>
<?php if ($this->checkPosition('text')) : ?>
<?php echo $this->renderPosition('text', array('style' => 'block')); ?>
<?php endif; ?>
<?php if ($this->checkPosition('meta')) : ?>
<ul class="item-metadata">
<?php echo $this->renderPosition('meta', array('style' => 'list')); ?>
</ul>
<?php endif; ?>
<?php echo JBZOO_CLR; ?>