cyberfolli:
There is no layout in there to modify and create tables for this..
This is the template file which doesn't do much
<?php
/**
* Module Template
*
* @package templateSystem
* @copyright Copyright 2003-2005 Zen Cart Development Team
* @copyright Portions Copyright 2003 osCommerce
* @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
* @version $Id: tpl_modules_specials_default.php 2935 2006-02-01 11:12:40Z birdbrain $
*/
$zc_show_specials = false;
include(DIR_WS_MODULES . zen_get_module_directory(FILENAME_SPECIALS_INDEX));
?>
<!-- bof: specials -->
<?php if ($zc_show_specials == true) { ?>
<div class="centerBoxWrapper" id="specialsDefault">
<?php
/**
* require the columnar_display template to show the products
*/
require($template->get_template_dir('tpl_columnar_display.php',DIR_WS_TEMPLATE, $current_page_base,'common'). '/tpl_columnar_display.php');
?>
</div>
<?php } ?>
<!-- eof: specials -->
```
Sorry, it's been a bit since I looked into the same thing. I seem to remember that there are a few files that all work together to give the line by line listing that you describe when going to the specials page. I am not at a computer and had done a bit of an internet search (unsuccessfully) to try to help. There should be an includes/modules/pages/specials header_php.php file that mayhelp track down the applicable files. Also, I think there is a modules file and possibly another template file. If not mistaken, you're trying to make the specials page look more like the all products view, so umay want to also look into how that all goes together as well.
The code posted above suggests to go look at the tpl_columnar_display.php file next to see what it does to provide the information, but I think the header file I described above and modifications to the tpl_specials.php file to look more like the type of display you're after (products, new, etc...) Is what you may be after. Sorry can't help much more at the moment.