That is because you need some custom coding to make it happen. There are very clear instructions for this in post #636 in this tread.
Upon looking into the files mentioned there, I am able to find all, except for the last piece of code in the instructionse where you have to add the code. (highlighted code in excerpt #636 below) Can anyone point me in the right direction Here?
see except below for post #636:
I have a number of modifications I've made to the orders.php page. I attempted to pull just the code out that will give you the site markers. I believe I got it all, but make sure you backup orders.php before doing all this. Very simple. Just pulls the site name from the orders table and displays it in the HTML table in that page.
Put his in a file called:
<admin folder>/includes/languages/english/extra_definitions/order_site.php
PHP Code:
<?php
define('TABLE_HEADING_SITE','Site');
define('HEADING_TITLE_SITE','Site');
?>
in [admin folder]/orders.php do the following:
find
PHP Code:
$orders = $db->Execute("select orders_id from " . TABLE_ORDERS . "
replace with:
PHP Code:
$orders = $db->Execute("select orders_id,order_site from " . TABLE_ORDERS . "
find:
PHP Code:
<td class="dataTableHeadingContent" align="center"><?php echo TABLE_HEADING_ORDERS_ID; ?></td>
above it add:
PHP Code:
<td class="dataTableHeadingContent" align="center"><?php echo TABLE_HEADING_SITE; ?></td>
find:
PHP Code:
<td class="dataTableContent" align="right"><?php echo $show_difference . $orders->fields['orders_id']; ?></td>
above it add:
PHP Code:
<td class="dataTableContent" align="left"><?php echo $orders->fields['order_site']; ?></td>



Reply With Quote
