Tuesday 17 August 2010 12:19:58 am
1st . Great product ! thanks a lot :) 2nd. In ezwebin Tryiing to use the horizontalldisplaysubitems Class on folders does not work as of 4.4 alpha 5 . Verticallydisplaysubitems works like charm. So I did a rookie approach with: Create file extension/ezwebin/design/ezwebin/override/templates/horizontallylistedsubitems/folder.tpk put this inside: {* Product - Horizontally Listed Subitems view *}
<div class="content-view-horizontallylistedsubitems">
<div class="class-folder">
<h2><a href={$node.url_alias|ezurl}>{$node.name|wash()}</a></h2>
<div class="attribute-price">
<p>
{attribute_view_gui attribute=$node.object.data_map.price}
</p>
</div>
{if $node.data_map.short_description.has_content}
<div class="attribute-short">
{attribute_view_gui attribute=$node.data_map.short_description}
</div>
{/if}
</div>
</div>
then do Update override.ini settings/siteaccess/esl/override.ini.append.php or the one you need with [embed_horizontallylistedsubitems_article]
Source=node/view/horizontallylistedsubitems.tpl
MatchFile=horizontallylistedsubitems/folder.tpl
Subdir=templates
Match[class_identifier]=folder
|