Hallo Zusammen,
noch recht neu bei Oxid. Ich würde gerne bei der Kategorieübersicht auch die lange Beschreibung mit anzeigen.
Das wäre in Tabelle oxv_oxcategories > OXLONGDESC
Im Template oxid\out\basic pl\page\list\list.tpl habe ich es ganz einfach mal
mit
[{ $category->oxcategories__oxlongdesc->value }]
ausprobiert, siehe:
[{if $oView->hasVisibleSubCats()}]
[{ oxmultilang ident="LIST_SELECTOTHERCATS1" }]<b>[{$actCategory->oxcategories__oxtitle->value}]</b> [{ oxmultilang ident="LIST_SELECTOTHERCATS2" }]
<hr>
<ul class="list">
[{foreach from=$oView->getSubCatList() item=category name=MoreSubCat}]
[{if $category->getContentCats() }]
[{foreach from=$category->getContentCats() item=ocont name=MoreCms}]
<li><a id="test_MoreSubCms_[{$smarty.foreach.MoreSubCat.iteration}]_[{$smarty.foreach.MoreCms.iteration}]" href="[{$ocont->getLink()}]">[{ $ocont->oxcontents__oxtitle->value }]</a></li>
[{/foreach}]
[{/if}]
[{if $category->getIsVisible()}]
[{assign var="iconUrl" value=$category->getIconUrl()}]
[{if $iconUrl}]
<a id="test_MoreSubCatIco_[{$smarty.foreach.MoreSubCat.iteration}]" href="[{ $category->getLink() }]">
<img src="[{$category->getIconUrl() }]" alt="[{ $category->oxcategories__oxtitle->value }]">
[{ $category->oxcategories__oxtitle->value }]
[{ $category->oxcategories__oxlongdesc->value }]
</a>
[{else}]
<li><a id="test_MoreSubCat_[{$smarty.foreach.MoreSubCat.iteration}]" href="[{ $category->getLink() }]">[{ $category->oxcategories__oxtitle->value }][{ if $category->getNrOfArticles() > 0 }] ([{ $category->getNrOfArticles() }])[{/if}]</a></li>
[{/if}]
[{/if}]
[{/foreach}]
</ul>
[{/if}]
Der Titel (oxtitle) wir angezeigt, allerdings nicht oxlongdesc…
Weiß jemand vielleicht wieso?
Vielen Dank
Simon