Yep, I follow you. But my php skills are very poor, so what exactly would work in my category.php? Actually I don't need the more tag in any of the categories, so I just want to strip it completely when browsing in category view (multi-post-view).
Here is my category template:
<?php
global $options;
foreach ($options as $value) {
if (get_option( $value['id'] ) === FALSE) { $$value['id'] = $value['std']; }
else { $$value['id'] = get_option( $value['id'] ); }
}
?>
<?php get_header() ?>
<div id="container">
<div id="content">
<?php thematic_page_title() ?>
<?php thematic_navigation_above();?>
<?php thematic_above_categoryloop() ?>
<?php thematic_categoryloop() ?>
<?php thematic_below_categoryloop() ?>
<?php thematic_navigation_below();?>
</div><!-- #content -->
</div><!-- #container -->
<?php thematic_sidebar() ?>
<?php get_footer() ?>