| Author |  | 
      
        | dmilasin Newbie
 
  
 
 Joined: 15 November 2014
 Online Status: Offline
 Posts: 1
 | 
          Where i can change text for contact field for example Phone. I want to place text next to phone icon like: "Fax","Mobile" or "Phone".
           | Posted: 15 November 2014 at 2:17am | IP Logged |   |  
           | 
 |  
 Can i add new field in contact like: mobile in Business info or i can change existing one for my needs
   | 
       
        | Back to Top |     | 
       
       
        |  | 
        | Igor AfterLogic Support
 
  
 
 Joined: 24 June 2008
 Location: United States
 Online Status: Offline
 Posts: 6168
 | 
          You can modify templates/views/Contacts/ViewContactViewModel.html and adjust it according to your requirements. For example, if you take the following line:
           | Posted: 17 November 2014 at 3:30am | IP Logged |   |  
           | 
 |  
 
 
| Code: 
 
    
    | 
      
       | <div class="row phone" data-bind="visible: '' !== personalPhone()"> |  |  |  
 and modify the class info as follows:
 
 
 
| Code: 
 
    
    | 
      
       | <div class="row" data-bind="visible: '' !== personalPhone()"> |  |  |  
 it will show just the "Phone" text there.
 
 Upon making changes to template, be sure to purge data/cache/ directory content.
 
 Adding more fields is certainly possible but would require quite a substantial code modification, adjusting the database structure, etc.
 
 --
 Regards,
 Igor, AfterLogic Support
 | 
       
        | Back to Top |     | 
       
       
        |  |