Jump to content

Question

Posted

I am trying out Blesta to see if it works better than our current setup. So far, very good. 

However, I would like to edit certain aspects of the "open source" code to make it more keen to my customers and company image. With that said, where can I find to remove the staff name entirely from the client ticket? 

As shown in the attachment, I'd like to only show the Support Staff portion.

Thank you in advance to the team.

ask.PNG

8 answers to this question

Recommended Posts

  • 0
Posted

/plugins/support_manager/views/default/client_tickets_reply.pdt  is the file you want to edit. Search for the term "gravatar". You'll want to comment out that line to not display any gravatar associated with your email. Then, comment out the line 2 lines below that one that contains $this->Html->concat('  ', $first_name, $last_name);

That should do it, I think, but you may need to comment out more lines below that, I haven't tested it.

  • 0
Posted

Go to:

/plugins/support_manager/views/default/client_tickets_reply.pdt

 

Find:

<strong><?php echo $this->Html->concat(' ', $first_name, $last_name);?></strong>

Replace with:

<php if($this->Html->ifSet($reply->staff_id) == '' && $this->Html->ifSet($reply->staff_id) == 0){ ?>
<strong><?php echo $this->Html->concat(' ', $first_name, $last_name);?></strong>
<?php } ?>

Or remove the bit Paul said lol

  • 0
Posted
12 minutes ago, Paul said:

/plugins/support_manager/views/default/client_tickets_reply.pdt  is the file you want to edit. Search for the term "gravatar". You'll want to comment out that line to not display any gravatar associated with your email. Then, comment out the line 2 lines below that one that contains $this->Html->concat('  ', $first_name, $last_name);

That should do it, I think, but you may need to comment out more lines below that, I haven't tested it.

 

11 minutes ago, BlestaStore said:

Go to:


/plugins/support_manager/views/default/client_tickets_reply.pdt

 

Find:


<strong><?php echo $this->Html->concat(' ', $first_name, $last_name);?></strong>

Replace with:


<php if($this->Html->ifSet($reply->staff_id) == '' && $this->Html->ifSet($reply->staff_id) == 0){ ?>
<strong><?php echo $this->Html->concat(' ', $first_name, $last_name);?></strong>
<?php } ?>

Or remove the bit Paul said lol

Thank you to both.

  • 0
Posted

One last question pertaining to this matter guys...

How do I change the staff name from staff name to company name, instead.. so, On Apr 5 2018 4:46 PM "company name" replied.

Thank you again.

ask.PNG

  • 0
Posted

I'm not totally sure if company name is available to the template. You could hard code it into the template if you do not have any addon companies in Blesta.

  • 0
Posted
1 hour ago, turner2f said:

Hello,
 

Prior to version 4.11.2 there used to be a way to change the Gravatar within tickets section for the client.

 

Gravatar image has only ever been able to be replaced or overridden by editing the code, there's no UI option to disable it. We would be open to implementing a feature where staff and clients can upload their own profile image rather than using Gravatar if you'd like to make a feature request at https://requests.blesta.com

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...