This is a discussion on display shipping total in Admin/orders within the osCMax v2 Customization/Mods forums, part of the osCMax v2.0 Forums category; Hi All, I'm trying to display the shipping total for each order along with the other information in the Admin ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
|
#1
| |||
| |||
| Hi All, I'm trying to display the shipping total for each order along with the other information in the Admin panel/customers/orders. However, I'm not succeeding and the best I can get is a "S" being displayed on each line for shipping. I've tried a number of different things but I'm not getting it, so I'm hoping for a little help from someone that understands coding better. Here's what I have at this time in orders.php Code: <?php
$shipping_total = 'SELECT `value` FROM `orders_total` WHERE `class` LIKE \'ot_shipping\' ORDER BY `orders_id` DESC';
?>
<td class="dataTableContent" align="center"><?php echo strip_tags ($shipping_total['value']) ?></td>
Any guidance is appreciated.
__________________ John |
|
#2
| |||
| |||
| I don't know if anyone else wants to display this but this is how I got it to work Code: <?php
$shipping_total = "SELECT text".
" FROM orders_total".
" WHERE class = 'ot_shipping' ".
" AND orders_id = ". $orders['orders_id'].
" ORDER BY orders_id DESC";
$shipping_query_01 = tep_db_query($shipping_total);
$shipping_query_02 = tep_db_fetch_array($shipping_query_01);
?>
<td class="dataTableContent" align="center"><?php echo $shipping_query_02['text']; ?></td>
__________________ John |
| Thread Tools | |
| |
| ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Admin orders - Display more characters in Model# field?? | JonCloud420 | osCMax v2 Features Discussion | 1 | 10-19-2006 08:06 PM |
| How do I display the Final Order Total? | mikestollov | osCommerce 2.2 Discussion | 2 | 03-21-2006 03:55 PM |
| Help! Lost Shipping and Order Total modules.. | Picman | osCommerce 2.2 Installation Help | 1 | 05-22-2004 06:34 PM |
| shipping total help | Raysworld | osCMax v1.7 Discussion | 0 | 03-02-2004 08:10 AM |
| Displaying ONLY item total but not currency in cart display | humbags | osCommerce 2.2 Modification Help | 0 | 07-12-2003 02:41 AM |