Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Company Name to Display in admin Customer.php


HiSSlyneSS

Recommended Posts

Can someone direct me to a post that can cater for the above.

 

I want to be able to view the company name directly from the admin side customer list

 

ie. that is not just First Name Last Name DAte created, but also Company Name, gender etc.

 

Thanks

Link to comment
Share on other sites

in admin/customers.php:

 

Change:

 

$customers_query_raw = "select c.customers_id,

 

To:

 

$customers_query_raw = "select a.entry_company, c.customers_id,

 

under:

 

<td class="dataTableHeadingContent"><?php echo TABLE_HEADING_FIRSTNAME; ?></td>

 

put:

 

<td class="dataTableHeadingContent"><?php echo 'Company Name'; ?></td>
<td class="dataTableHeadingContent"><?php echo 'Gender'; ?></td>

 

and under:

 

<td class="dataTableContent"><?php echo $customers['customers_firstname']; ?></td>

 

put:

 

<td class="dataTableContent"><?php echo $customers['entry_company']; ?></td>
<td class="dataTableContent"><?php echo $customers['customers_gender']; ?></td>

Your online success is Paramount.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...