Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Going LIVE...Order Process Email problem


Guest

Recommended Posts

Hi my shop is almost ready to go 2 things I need to sort out!

 

In the e-mails

 

Products

------------------------------------------------------

1 x Product1 () = 4.20EUR

1 x Product2 () = 1.40EUR

1 x Product3 () = 4.50EUR

------------------------------------------------------

 

What are those () Parantesies and how can I get rid of them? - it looks strange!

 

Secondly! - the link for detailed invoice does not work: when clicked the user is asked to log in but the site does not redirect the user to the detailed invoice automatically!

 

Thanks for any help!

Link to comment
Share on other sites

If your were using the model number field for the product it would be within the parentheses You can remove them in the checkout process file where it builds the email.

 

Sorry but, I don't know the answer to your second question.

Link to comment
Share on other sites

Thanks for all your help, I don't seem to see the bit that contains the model number in parenthesies in here:

 

// lets start with the email confirmation

 $email_order = STORE_NAME . "n" . 

                EMAIL_SEPARATOR . "n" . 

                EMAIL_TEXT_ORDER_NUMBER . ' ' . $insert_id . "n" .

    EMAIL_TEXT_DATE_ORDERED . ' ' . strftime(DATE_FORMAT_LONG) . "nn";

 if ($order->info['comments']) {

   $email_order .= $order->info['comments'] . "nn";

 }

 $email_order .= EMAIL_TEXT_PRODUCTS . "n" . 

                 EMAIL_SEPARATOR . "n" . 

                 $products_ordered . 

                 EMAIL_SEPARATOR . "n";



 $size = sizeof($order_totals);

 for ($i=0; $i<$size; $i++) {

   $email_order .= strip_tags($order_totals[$i]['title']) . ' ' . strip_tags($order_totals[$i]['text']) . "n";

 }



 $email_order .= "n" . EMAIL_TEXT_DELIVERY_ADDRESS . "n" . 

                 EMAIL_SEPARATOR . "n" .

                 tep_address_label($customer_id, $sendto, 0, '', "n") . "nn" .

                 EMAIL_TEXT_BILLING_ADDRESS . "n" .

                 EMAIL_SEPARATOR . "n" .

                 tep_address_label($customer_id, $billto, 0, '', "n") . "nn";

 

any ideas?

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...