This is a discussion on Edit middle of index.php?? within the osCMax v1.7 Discussion forums, part of the osCMax v1.7 Forums category; Hello all, I have a group of questions ... simple as they may seem. I'd love to edit the middle ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
|
#1
| |||
| |||
| Hello all, I have a group of questions ... simple as they may seem. I'd love to edit the middle part of the index page, but for some reason my brain isn't functioning today and I can't find the correct places to do the following things: 1) Completely remove the HEADING_TITLE (What's new here?) Actually I wouldn't mind removing the HEADING_TITLE from every page. 2) Completely remove the line: Welcome Guest! Would you like to log yourself in? Or would you prefer to create an account? 3) Edit the file(s) for the SPECIALS BOX so that I can remove the strike-through price (so that just the red price remains) and change the heading from "Specials For September" to "Featured Products." (I was able to remove the strike-through price in the right column Specials Box, but not the middle column.) 4) Completely remove the New Products for September box from under the Specials Box. I know that this is probably very simple, but so far I can't find the correct files. Thanks in advance!! |
| Sponsored Links | ||
| ||
| |
|
#2
| |||
| |||
| Most of that you can do in catalog/includes/languages/english/index.php The New products box is removed by going to catalog/templates/content/index_default.tpl.php and look for this line <tr> <td><br><?php include(DIR_WS_MODULES . FILENAME_NEW_PRODUCTS); ?></td> and change it to look like this <tr> <td><br><?php //include(DIR_WS_MODULES . FILENAME_NEW_PRODUCTS); ?></td> |
|
#3
| ||||
| ||||
| Hey all ... I am still looking for specific information on how to change these things ... Quote:
Quote:
Quote:
Quote:
-Steve |
|
#4
| |||
| |||
| 1) Edit catalog/templates/content/" index_default.tpl.php, index_nested.tpl.php, index_products.tpl.php," files. Look for this part of the file and comment out "echo HEADING-TITLE;" and to remove the image comment out "echo tep_image(DIR_WS_IMAGES . . . . " The index_products_tpl.php is a little different but you will be able to figure it out. Code: <td><table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td class="pageHeading">
<?php
if ( (ALLOW_CATEGORY_DESCRIPTIONS == 'true') && (tep_not_null($category['categories_heading_title'])) ) {
echo $category['categories_heading_title'];
} else {
// echo HEADING_TITLE;
}
?>
</td>
<td class="pageHeading" align="right">
<?php // echo tep_image(DIR_WS_IMAGES . 'table_background_default.gif', HEADING_TITLE, HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?>
</td>
</tr>
</table></td>
Code: <td class="main"><?php echo tep_customer_greeting(); ?></td> Code: <td class="main"><?php // echo tep_customer_greeting(); ?></td> Disclaimer Quote:
Mark |
| Sponsored Links | ||
| ||
| |
| Thread Tools | |
| |
| ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Changing index.php | alechhe | osCMax v2 Customization/Mods | 2 | 11-07-2006 06:50 AM |
| Box in the Middle: Categories | carab | osCommerce 2.2 Modification Help | 4 | 11-16-2004 07:45 AM |
| how to move index.php | rnomis | osCMax v1.7 Discussion | 5 | 02-21-2004 04:19 PM |
| Changing Index | wudsqrl | osCommerce 2.2 Modification Help | 1 | 01-26-2004 06:47 AM |
| linking to index.htm | Christy | osCMax v1.7 Discussion | 3 | 11-21-2003 05:06 PM |