Results 1 to 7 of 7

Hybrid View

  1. #1
    Join Date
    Oct 2005
    Posts
    286
    Plugin Contributions
    0

    Default Customise customers menu

    Does anyone know how i can show the fax number in the list of customers?
    go to admin>customers and there is the list of customers showing their last name, first name, company, account created etc...




    In admin/customers.php I have added <td class="dataTableContent">Fax:<?php echo $customers->fields['customers_fax']; ?></td>

    it shows 'Fax:' but it doesn't display the fax number.

    Thanks,
    M.

  2. #2
    Join Date
    Mar 2004
    Posts
    16,042
    Plugin Contributions
    5

    Default Re: Customise customers menu

    what version of zen cart are you using?
    in 1.3.0.1

    this is already in place

    Code:
    <tr>
                <td class="main"><?php echo ENTRY_FAX_NUMBER; ?></td>
                <td class="main">
    <?php
      if ($processed == true) {
        echo $cInfo->customers_fax . zen_draw_hidden_field('customers_fax');
      } else {
        echo zen_draw_input_field('customers_fax', $cInfo->customers_fax, zen_set_field_length(TABLE_CUSTOMERS, 'customers_fax', 15));
      }
    ?></td>
              </tr>

  3. #3
    Join Date
    Oct 2005
    Posts
    286
    Plugin Contributions
    0

    Default Re: Customise customers menu

    Hi Merlin.
    I see that in the customers details page but i want to show the fax number where all the customers are listed accros the page.

    M.

  4. #4
    Join Date
    Mar 2004
    Posts
    16,042
    Plugin Contributions
    5

    Default Re: Customise customers menu

    Im lost where are you talking about

  5. #5
    Join Date
    Oct 2005
    Posts
    286
    Plugin Contributions
    0

    Default Re: Customise customers menu

    Sorry, probably not very clear description.

    IN Admin customers > customers.

    the grey bar accros the page shows last name | first name | Company | Account Created | Last Login

    Below it lists these details for each customer.

    What i want to do is also show the Fax number for each customer.
    M.

  6. #6
    Join Date
    Oct 2005
    Posts
    286
    Plugin Contributions
    0

    Default Re: Customise customers menu

    This is the code for the customers list


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

    I have added:
    <td class="dataTableContent">Fax:<?php echo $customers->fields['customers_fax']; ?></td>

    but the fax number doesn't display.

    Ideas?
    ....
    Anyone?

 

 

Similar Threads

  1. v151 customise "categories tabs-menu"
    By marton_1 in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 10 May 2013, 11:40 PM
  2. Replies: 0
    Last Post: 17 Aug 2012, 02:54 PM
  3. Easy way to edit header/top menu, footer menu, and sidebar menu?
    By templar2 in forum Templates, Stylesheets, Page Layout
    Replies: 8
    Last Post: 30 Jun 2009, 11:14 AM
  4. Customise moneyorder
    By mojoman in forum Customization from the Admin
    Replies: 2
    Last Post: 14 Nov 2006, 04:31 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg