Merged 2.2.2 layout with 2.3.3 additions, and with a few other tweaks, all is sweet.
Merged 2.2.2 layout with 2.3.3 additions, and with a few other tweaks, all is sweet.
Hey Clyde, I did a test run of the email sent to the customer, please see the attached.
basically here it is
Dear Joseph Smith Thank you for your recent request. Your request has been successfully submitted to Axle Inc.. It will be reviewed and you will receive an email with instructions on how to proceed. If you have not received it within the next 48 hours, please contact us before submitting your request again. For help with our Returns , please email the store-owner: Axle Inc.. Note: This email address was given to us during a Return Merchandise Authorization. If you have a problem, please send an email to Axle Inc..
basically what looks like is the email part. The script just 'text'es teh store name. there is no email address or link to click to email. Shouldn't it say something else besides the store name like
"email the store owner at [email protected] ? or is this correct?
tia!
thanks one more thing, another screen shot. on the input page, the buttons are out of alignment and i KNOW i didn't muck with the coding on that.
my products have serial numbers that both I and the factory in China use to track the item history can an extra field be added in the form for this
What ever your doing remember to KISS ( Keep It Simple Stupid )
Clyde, I would like to take the return request data, and send the data to the order comments and then update the status.
I've managed to modify the order_questions mod so that when a customer sends a question through their order, it updates their status to a customer comment status.
What I need is to be able to have the return request update their status to customer comment and insert that they have submitted a return request.
Can you help at all, I would be willing to send some money your way if need be as this would make a huge difference to the turn around time of the after sales care.
I could use
to get the order number, then modify my code below to get it to updatePHP Code:
$order_number = zen_db_prepare_input($_POST['order_number']);
Now if the code works, I just need that update to be done when they hit submit.PHP Code:
$order_status = '6';
$return_update = array('orders_id' => zen_db_prepare_input($_POST['order_number']),
'orders_status' => $order_status,
'comments' => zen_db_prepare_input($_POST['action']),
'comment_by' => 'c'
);
zen_db_perform(TABLE_ORDERS, $return_update, 'update', "orders_id = '" . $order_id . "'");
Last edited by DigitalShadow; 15 Jul 2011 at 10:31 AM.
Anyone?
Bookmarks