Hi I would like to display search results for the video tags on search.tpl (olderversion)
this is as far as I have got (not working)... not sure how the tags are referenced,
| Code: |
<h5 class="header">{$smarty.const._HWDVIDS_TITLE_VIDMATCHING} "{$searchterm}"</h5>
<div class="videosearch">
{if $print_matchvids}
{foreach name=outer item=data from=$matchingvids}
{include file='video_list.tpl'}
{/foreach}
{else}
<div class="padding">{$mvempty}</div>
{/if}
</div>
{$vpageNavigation}
<h5 class="header">{$smarty.const._HWDVIDS_TITLE_GROUPMATCHING} "{$searchterm}"</h5>
<div class="groupsearch">
{if $print_matchgrps}
{foreach name=outer item=data from=$matchinggroups}
{include file='group_list.tpl'}
{/foreach}
{else}
<div class="padding">{$mgempty}</div>
{/if}
</div>
{$gpageNavigation}
|
I want to show tag search results here
| Code: |
<h5 class="header">{$smarty.const._HWDVIDS_TITLE_VTAGSMATCHING} "{$searchterm}"</h5>
<div class="groupsearch">
{if $print_matchvtags}
{foreach name=outer item=data from=$matchingvtags}
{include file='video_list.tpl'}
{/foreach}
{else}
<div class="padding">{$mgempty}</div>
{/if}
</div>
{$gpageNavigation}
|
cheers