|
|
|
|
"I wanted "Featured Products" to show up in the main page only. These few lines of code does just that.
In the file Index.php in the /shop directory find the line :
<td><?php include(DIR_WS_MODULES . FILENAME_FEATURED); ?></td>
Replace it with this :
<td><?php
if ($cPath == ' '){
include(DIR_WS_MODULES . FILENAME_FEATURED);
} ?></td>
That's it
Don't forget to backup before changing anything.
Ole Stavnshoej
FILENAME_FEATURED);
} ?></td>
That's it
Don't forget to backup before changing anything.
Ole Stavnshoej" |
|
|
|
 |
| For more information, visit the official osCommerce contribution webpage. |
 |
|
|