KruzoDK Posted August 31, 2008 Posted August 31, 2008 Hi guys In the admin/returns.php in The list of RMA's it generates not one, byt two lines with the same information except the last "status" column". i have narrowed it down to this code: <?php // ADDED BY BURT ?> <td class="dataTableContent" align="center"><b><?php echo $orders['rma_value']; ?></b></a> <?php // END BURT ?> <td class="dataTableContent"><?php echo '<a href="' . tep_href_link(FILENAME_RETURNS, tep_get_all_get_params(array('oID', 'action')) . 'oID=' . $orders['returns_id'] . '&action=edit') . '">' . tep_image(DIR_WS_ICONS . 'preview.gif', ICON_PREVIEW) . ' ' . $order_done . $return_customer_name . '</font></a>' ; ?></td> <td class="dataTableContent" align="right"><?php echo $currencies->format($orders['final_price']); ?></td> <td class="dataTableContent" align="center"><?php echo tep_datetime_short($orders['date_purchased']); ?></td> <td class="dataTableContent" align="right"><?php echo $orders['return_reason_name']; ?></td> <td class="dataTableContent" align="right"><?php echo $orders['returns_status_name'];?></td> </tr><?php } // WHILE LOOP ?> But what do i need to do in order for it to only generate one line instead of two. if you do not catch the meaning of this, here is a SC: Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.