Guest Posted November 23, 2002 Posted November 23, 2002 I have searched the forums and found this subjet brought up a few times but no answers. I am using a snapshot from early August and the Single Shipment / Multiple Shipment feature during checkout does not work. I have tried to modify the code to show up in the admin panel, with no luck. Does someone know how to do this.. so it works.. I have no way of knowing if my customers are clicking single or multiple shipments. I have thought about upgrading to the new checkout procedure, but I am a little shaky on making the DB changes that are necessary to make the new checkout procedure work. And does the new checkout procedure have this single/multiple shipment feature? Thanks Shawn
Mark Evans Posted November 23, 2002 Posted November 23, 2002 I am using a snapshot from early August and the Single Shipment / Multiple Shipment feature during checkout does not work. Does someone know how to do this.. so it works.. I have no way of knowing if my customers are clicking single or multiple shipments. This feature was never completed which is why it does not show in the admin tool. And does the new checkout procedure have this single/multiple shipment feature? No. This feature has now been removed from CVS until it can be completed. Mark Evans osCommerce Monkey & Lead Guitarist for "Sparky + the Monkeys" (Album on sale in all good record shops) --------------------------------------- Software is like sex: It's better when it's free. (Linus Torvalds)
Guest Posted November 23, 2002 Posted November 23, 2002 Thanks Mark, This seems like a pretty easy thing to do.. I just dont have the necessay experience with php to do it.. I have been trying to make it work all afternoon. So far I have added this line; <tr> <td class="main"><b><?php echo 'Multiple/Single Shipment:' ?></b></td> <td class="main"><?php echo $order->info['comments']; ?></td> </tr> Obviously this line $order->info['comments']; needs to be replaced with the proper code from checkout_confirmation.php My checkout_confirmation.php looks like this; // Stock Options prompts user for sending when STOCK is available or send now ! if ( ($any_out_of_stock) && (STOCK_ALLOW_CHECKOUT == 'true') ) { ?> <tr> <td class="tableHeading"><br><?php echo TEXT_STOCK_WARNING; ?></td> </tr> <tr> <td><?php echo tep_draw_separator(); ?></td> </tr> <tr class="payment-odd"> <td class="shipment"><?php echo TEXT_UNIQUE_SHIPMENT; ?><input type="radio" name="shiptype" value="Single Shipment" checked> <?php echo TEXT_MULTIPLE_SHIPMENT; ?><input type="radio" name="shiptype" value="Multiple Shipments"></td> </tr> <tr> <td class="infoBox2"><br><?php echo TEXT_STOCK_WARNING_DESC; ?></td> </tr> <tr> <td class="infoBox2"><b><?php echo TEXT_IMEDIATE_DELIVER; ?></b><br><br> So what do I need to do to the catalog/checkout_confirmation.php and the admin/orders.php to make this work?
Guest Posted November 23, 2002 Posted November 23, 2002 This would work great if I could just get the value that is assigned to the radio buttons to be viewed with an echo command in the admin/orders.php Anyone?? :roll:
Recommended Posts
Archived
This topic is now archived and is closed to further replies.