Quote:
Originally Posted by chick
Hello again Andrew, I have gone through the Wiki and I am still having a problem with that empty area that shows just on the main page (other pages obviously have cat info etc...) but I want to eliminate that main page top table, it looks like precat and I tried removing it from the LDM main template but it was not removed.
See image, how can I remove this main page table that is basically empty? Thank you.
|
Hi,
edit the links_main template. Find the section that reads
Code:
<if condition="$viewcattext or $viewcatextra">
<tr>
<td class="alt1">
$viewcattext
$viewcatextra
</td>
</tr>
</if>
and change to
Code:
<if condition="($viewcatid>0 or $script!=$LINKS_SCRIPT) and ($viewcattext or $viewcatextra)">
<tr>
<td class="alt1">
$viewcattext
$viewcatextra
</td>
</tr>
</if>