robyoung Posted September 26, 2006 Posted September 26, 2006 Hi Is there a current fix or can someone advise how I can add the "Mark product out of stock" comments onto the order confirmation? I would like the e-mail to say: 1 x Product Not in Stock Ordered = ?14.99 PRE-ORDER 1 x Product In Stock Ordered = ?14.99 Any suggestions?
♥Monika in Germany Posted September 26, 2006 Posted September 26, 2006 Hi Is there a current fix or can someone advise how I can add the "Mark product out of stock" comments onto the order confirmation? I would like the e-mail to say: 1 x Product Not in Stock Ordered = ?14.99 PRE-ORDER 1 x Product In Stock Ordered = ?14.99 Any suggestions? checkout_process.php in line you get the current stock 148 $stock_values['products_quantity'] I guess that is where you have a 0 for your preorder items you can wrap a conditional statement for that on your products display in line 219 $products_ordered .= $order->products[$i]['qty'] . ' x ' . $order->products[$i]['name'] . ' (' . $order->products[$i]['model'] . ') = ' . $currencies->display_price($order->products[$i]['final_price'], $order->products[$i]['tax'], $order->products[$i]['qty']) . $products_ordered_attributes . "\n"; separate this into several parts (cust before and after you want to add text) and wrap those parts in the check if the stock is 0 :-) Monika addicted to writing code ... can't get enough of databases either, LOL! my toolbox: Textpad - Compare and Merge - phpMyAdmin - WS_FTP - Photoshop - How to search the forum Interactive Media Award July 2007 ~ category E-Commerce my advice on the forum is for free, PMs where you send me work are considered consultation which I charge for ...
robyoung Posted September 26, 2006 Author Posted September 26, 2006 Thanks but this doesn't change the e-mail? How do I do this?
♥Monika in Germany Posted September 26, 2006 Posted September 26, 2006 Rob, the method I described will exactly change that: the email I id not give you ready made code, you need to write it yourself :-) Monika addicted to writing code ... can't get enough of databases either, LOL! my toolbox: Textpad - Compare and Merge - phpMyAdmin - WS_FTP - Photoshop - How to search the forum Interactive Media Award July 2007 ~ category E-Commerce my advice on the forum is for free, PMs where you send me work are considered consultation which I charge for ...
robyoung Posted September 26, 2006 Author Posted September 26, 2006 Ok. I am not a writer, anyone want to do it for a tenner?
Recommended Posts
Archived
This topic is now archived and is closed to further replies.