Untitled
unknown
plain_text
a month ago
2.0 kB
4
Indexable
Never
<?php if (!empty($order['order_warehouse_instructions']) || !empty($order['order_product_warehouse_instruction'])) { ?> <tr > <td style="padding-top:0px; padding-bottom:0px;"> <table width="100%" cellpadding="0" cellspacing="0"> <tr> <!-- Warehouse Instructions Label --> <td class="font-bold" style="vertical-align: top; white-space: nowrap;" width="161px"> <b>Warehouse Instructions : </b> </td> <!-- Order Warehouse Instructions and Order Product Warehouse Instructions --> <td style="width: 728px; vertical-align: top; word-wrap: break-word;"> <?php if (!empty($order['order_warehouse_instructions'])) { echo $order['order_warehouse_instructions']; if (!empty($order['order_product_warehouse_instruction'])) { echo '<br>'; } } if (!empty($order['order_product_warehouse_instruction'])) { echo nl2br($order['order_product_warehouse_instruction']); } ?> </td> </tr> </table> </td> </tr> <?php } ?> <?php if ($order['order_carrier_instructions']) { ?> <tr> <td colspan="2"> <b>Carrier Instructions : </b><?php echo $order['order_carrier_instructions']; ?> </td> </tr> <?php } ?>
Leave a Comment