Jump to content
  • 0

Rename The "change Button" In Client Area


Question

Posted

Hi

 

How would I rename the "Change" button on the client area where a client would update their contact information.

 

Any help would be much appreciated.

 

 

3 answers to this question

Recommended Posts

  • 0
Posted

Go to: app/views/client/bootstrap/client_main_myinfo.pdt

 

find:

<a href="<?php echo $this->Html->safe($this->base_uri . "main/edit/");?>" class="btn btn-xs btn-default pull-right"><i class="fa fa-pencil"></i> <?php $this->_("ClientMain.myinfo.link_editclient");?></a>

Change to something like:

<a href="<?php echo $this->Html->safe($this->base_uri . "main/edit/");?>" class="btn btn-xs btn-default pull-right"><i class="fa fa-pencil"></i> Change Information</a>

or whatever or you can edit the language files.

  • 0
Posted

Open /language/en_us/client_main.php, find "ClientMain.myinfo.link_editclient" and change it there. This is a core file, so you would need to maintain this change through any upgrades to Blesta you perform in the future.

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...