Add the "echo" line as shown here.
Add HTML comment marks <!-- and --> at beginning and end of the section shown.
Add PHP comment marks // wherever you don't see them in your copy of the file.
PHP Code:
<?php
$disp_sort_order->MoveNext();
}
//add the following line
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();
The colors indicate different kinds of elements which a good file editor will automatically distinguish for you. What are you using to edit files?