Greetings,
To the layman, the new template system is lacking a lot of information =
about
working with them. Any help would be sincerley appreciated.
Question: I would like our categories page to show three rows of =
products
instead of the standard one.
Build a three row table, populate each section that a product should =
display
with what syntax?, do I need to define number or will pagination still
control that?
<mvt:item name=3D"product_list" />
Where do I place it in the existing categories template structure?=20
Help!
Nick
Existing Category Display Template below
<html>
<head>
<title>&mvt:store:name;: &mvt:category:name;</title>
<base href=3D"&mvt:global:basehref;">
<mvt:item name=3D"head" />
</head>
<mvt:item name=3D"body">
<mvt:item name=3D"hdft" param=3D"global_header" />=09
<table border=3D"0" cellpadding=3D"0" cellspacing=3D"0" width=3D"100%">
<tr><td align=3D"left" valign=3D"bottom" colspan=3D2 >
<mvt:item name=3D"navbar" />
</td></tr>
<tr><td align=3D"left" valign=3D"bottom">=20
<mvt:item name=3D"hdft" param=3D"header" />
</td></tr>
<tr><td align=3D"left" valign=3D"top" bgcolor=3D"&mvt:colors:ctgy_bg;">
<table border=3D"0" cellpadding=3D"10" cellspacing=3D"0">
<tr><td align=3D"left" valign=3D"top" nowrap>
<mvt:item name=3D"fonts" param=3D"ctgy_font">
<mvt:item name=3D"customerlink" />
<mvt:item name=3D"affiliatelink" />
<mvt:item name=3D"category_tree" />
</mvt:item>
</td></tr>
</table>
</td><td align=3D"left" valign=3D"top" width=3D"80%">
<blockquote>
<mvt:item name=3D"prod_ctgy_hdft" param=3D"ctgy_header" />
<mvt:if expr=3D"NOT ISNULL l.settings:category_title:image">
<img src=3D"&mvte:category_title:image;"
alt=3D"&mvte:category:name;" border=3D"0">
<mvt:else>
<mvt:item name=3D"fonts" param=3D"hdr_font">
&mvte:category:name;
</mvt:item>
</mvt:if>
<mvt:item name=3D"product_list" />
<mvt:item name=3D"prod_ctgy_hdft" param=3D"ctgy_footer" />
</blockquote>
</td></tr>
<tr><td align=3D"left" valign=3D"bottom">=20
<mvt:item name=3D"hdft" param=3D"footer" />
</td></tr>
</table>
<mvt:item name=3D"hdft" param=3D"global_footer" />=09
</mvt:item>
</html>
Comment