2
Hi, you could star at templates/yogurt_index.html
Look for this:
<{foreach item=module from=$modules}>
<div class="yogurt-profile-search-module">
<h4 class="yogurt-profiletitle head"> <a class="yogurt-profile-search-module-title"> <img src="images/toggle.gif" />a> <{$module.name}>h4>
<div class="yogurt-profile-search-module-results">
<{foreach item=result from=$module.results}>
<p class="<{ cycle values="odd,even"}>"> <img src="<{$xoops_url}>/<{$result.image}>" alt="<{$module.name}>" /><b><a href="<{$xoops_url}>/<{$result.link}>"><{$result.title}>a>b><br /><small>(<{$result.time}>)small>p>
<{/foreach}>
<p>
<{$module.showall_link}>
p>
div>
div>
<{/foreach}>
That is the loop that goes true the search results
you can use smarty <{if}> to list the result for just one module and then paste that code where you like
ex:
<{foreach item=module from=$modules}>
<{if $module.name == 'xmovie'}>
<div class="yogurt-profile-search-module">
<h4 class="yogurt-profiletitle head"> <a class="yogurt-profile-search-module-title"> <img src="images/toggle.gif" />a> <{$module.name}>h4>
<div class="yogurt-profile-search-module-results">
<{foreach item=result from=$module.results}>
<p class="<{ cycle values="odd,even"}>"> <img src="<{$xoops_url}>/<{$result.image}>" alt="<{$module.name}>" /><b><a href="<{$xoops_url}>/<{$result.link}>"><{$result.title}>a>b><br /><small>(<{$result.time}>)small>p>
<{/foreach}>
<p>
<{$module.showall_link}>
p>
div>
div>
<{/if}>
<{/foreach}>
I think you will have to remove some divs and classes here to take off the efects because it may cause problems.