jhande, on Nov 12 2008, 04:04 AM, said:
I'll play around with the other edits until I except defeat LOL.
one hint - I looked through the code of includes/modules/shipping/usps.php
I don't think that the other edits are handled there - I looked in includes/classes/shipping.php and couldn't find it either - it's got to be handles elsewhere - also, the default coding makes both of the checkout_confirmation page display the SAME variable, so you'd have to find where the variable is set to begin with (in a function perhaps) and find a way to create a 2nd variable for the U.S.P.S. = total part while placing a "\n" in the existing variable to create the line break. When I looked at the usps.php file, I thought that:
if ($time != '') $transittime[$service] = ': ' . $time . '';
You could try modifying this line:
$shiptitle = ' (' . $shipping_num_boxes . ' x ' . $shipping_weight . 'lbs)';
to:
$shiptitle = ' (' . $shipping_num_boxes . ' x ' . $shipping_weight . 'lbs)' . "\n";
OR
$this->quotes = array('id' => $this->code,
'module' => $this->title . $shiptitle);
to:
$this->quotes = array('id' => $this->code,
'module' => $this->title . $shiptitle . "\n");
Scott














