Hi, we’ve the following in the group-header.php
<div class="asp_group_header"><?php echo $group_name; ?></div>
We grouped the search results by categories. How do we add a class based on the group name e.g. <div class=”asp_group_header directory” if the category name is directory. It’ll need to replace spaces with dash though.
Also in vertical.php we’ve the following
<?php if ($show_description == 1): ?>
<div class="asp_res_text">
<?php echo $r->content; ?>
</div>
<?php endif; ?>
Is it possible that we hard code it so that a certain group (which is a category name) will always show description but the rest is based on setting?