Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Actual Shipping Costs


Guest

Recommended Posts

Hi, I'm new here and I need help with the shipping module.

 

I need to change Flat Rate (Best Buy) to "Actual Shipping Cost" and then outside the shipping box, I would like to write a blurb saying something like "amount shown is a placer only and actual shipping...."

 

My question:

 

How and where can I change Flat Rate (Best Buy) to "Actual Shipping". Is this possible?

 

And which file would I go into to write a paragraph under the shipping box?

 

If anyone can help me with this, I would so appreciate it. I've tried looking through the posts, but none seem to answer my questions.

 

Thanks so much.

 

Claudia

Link to comment
Share on other sites

Hi, I'm new here and I need help with the shipping module.

 

I need to change Flat Rate (Best Buy) to "Actual Shipping Cost" and then outside the shipping box, I would like to write a blurb saying something like "amount shown is a placer only and actual shipping...."

 

My question:

 

How and where can I change Flat Rate (Best Buy) to "Actual Shipping".  Is this possible?

 

And which file would I go into to write a paragraph under the shipping box?

 

If anyone can help me with this, I would so appreciate it.  I've tried looking through the posts, but none seem to answer my questions.

 

Thanks so much.

 

Claudia

 

To change the textual thing look in

(catalog)/includes/languages/english/modules/shipping/flat.php

 

For an extra paragraph underneath the shipping box you can edit the checkout_shipping.php

Ie. you can add

      <tr>
       <td><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox">
         <tr class="infoBoxContents">
           <td><table border="0" width="100%" cellspacing="0" cellpadding="2">
             <tr>
               <td><?php echo 'some custom text through a new define is best'; ?></td>
             </tr>
           </table></td>
         </tr>
       </table></td>
     </tr>

just above

      <tr>
       <td><table border="0" width="100%" cellspacing="0" cellpadding="2">
         <tr>
           <td class="main"><b><?php echo TABLE_HEADING_COMMENTS; ?></b></td>
         </tr>
       </table></td>
     </tr>

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...