Ich habe eine kleine Frage zur Bearbeitung der Suchergebnis-Seite des Search-Moduls
Code: Select all
<h3>{$searchresultsfor} "{$phrase}"</h3>
{if $itemcount > 0}
<ul>
{foreach from=$results item=entry}
<li>{$entry->title} - <a href="{$entry->url}">{$entry->urltxt}</a> ({$entry->weight}%)</li>
{*
You can also instantiate custom behaviour on a module by module basis by looking at
the $entry->module and $entry->modulerecord fields in $entry
ie: {if $entry->module == 'News'}{News action='detail' article_id=$entry->modulerecord detailpage='News'}
*}
{/foreach}
</ul>
<p>{$timetaken}: {$timetook}</p>
{else}
<p><strong>{$noresultsfound}</strong></p>
{/if}
Suchergebnis A - Suchergebnis A (100%) erhalte.
Wie bekomme ich {$entry->title} dahingehend geändert, dass der menutext angezeigt wird. Mit {$entry->menu_text} oder {$entry->menutext} gehts leider nicht.
Danke für Eure Hilfe!