/includes/templates/your_template/templates/tpl_modules_all_listing.php
These are the lines I changed - you might not want to do all of these, depending on your display desires:
Around line 110, comment out the line
PHP Code:
if (PRODUCT_ALL_LIST_DESCRIPTION > '0') {
$disp_text = zen_get_products_description($products_all->fields['products_id']);
//$disp_text = zen_clean_html($disp_text); //gjh42 2007-12-15
Do not do this unless you want to enable HTML in the listing descriptions. Search the forum for zen_clean_html for a description and cautions.
Around line 189, add the description output and comment out the original table row output:
PHP Code:
<?php
$disp_sort_order->MoveNext();
}
echo '<br /><span class="allListingDesc">' . $display_products_description . '</span>'; //gjh42 2007-12-15 - hard-code description at bottom of right column
?>
</td>
</tr>
<!--<?php// if (PRODUCT_ALL_LIST_DESCRIPTION != 0) { ?>gjh42 2007-12-15 - remove description spanning below rest of product - html and php comment tags
<tr class="<?php// echo ((int)($row_counter/2)==($row_counter/2)) ? 'productListing-even' : 'productListing-odd'; ?>">
<td colspan="3" valign="top" class="main">
<?php
//echo $display_products_description;
?>
</td>
</tr>
<?php// } ?>
<tr>
<td colspan="3"><hr /></td>
</tr> -->
<?php
$products_all->MoveNext();