Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

adding text to account_history_info.php


Guest

Recommended Posts

Posted

i would like to add some test to account_history_info.php.

 

I need it to be just under the Download Links section, so that i can add some support text for customers who might be trying to download but are unsure what to do or are having problems.

 

I figure this must be pretty easy to do but i don't know how to do it!

Posted

Open catalog/includes/modules/download.php

 

Find:

 <tr>
       <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
     </tr>
     <tr>
       <td class="main"><b><?php echo HEADING_DOWNLOAD; ?></b></td>
     </tr>
     <tr>
       <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
     </tr>
     <tr>
       <td><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox">
<!-- list of products -->

 

After this code add:

<tr class="infoBoxContents"><td class="main"><?php echo TEXT_DOWNLOAD_NEWINFO; ?></td></tr>

 

Open file catalog/includes/languages/english/account_history_info.php

 

Add the follow line:

define('TEXT_DOWNLOAD_NEWINFO', 'Put your download info support text here');

Posted

thanks. I also had to change checkout_success.php the same as with the account_history_info.php

 

Are there any other places that need changing?

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...