Quick amendment for you, in index.php
swap
PHP Code:
foreach($oResponse->oRefineByGroup as $details){
$sName1 = $details->sName;
$iId1 = $details->iId;
if ($sName1<>''){
echo "<div class=\"centralproducts2\"/><b>".$sName1."</b><br/>";
foreach($details->oRefineByDefinition as $details2){
echo "<br/>";
$sName = $details2->sName;
$sId = $details2->sId;
echo $sName." ";
}
echo "</div>"; }
}
for
PHP Code:
foreach($oResponse->oRefineByGroup as $details){
$sName1 = $details->sName;
$iId1 = $details->iId;
if ($sName1<>''){
echo "<div class=\"centralproducts2\"/><b>".$sName1."</b><br/>";
foreach($details->oRefineByDefinition as $details2){
echo "<br/>";
$sName = $details2->sName;
$sId = $details2->sId;
if ($sName1=='Category') {
echo $sName." <a href=index.php?id=".$sId.">more</a>";
}
else
echo $sName." ";
}
}
echo "</div>";
}
Which will give you a link after the categories at the bottom of the page.
Bookmarks