Jump to content

Google Me Now

Members
  • Posts

    5
  • Joined

  • Last visited

Reputation Activity

  1. Thanks
    Google Me Now reacted to Paul in Digital Ocean Module still work?   
    Someone mentioned that they got this to work, I'm assuming it was you? You should be adding the directory name digitaloceanmodule to /components/modules/, which contains the module files. Then, under Settings > Company > Modules > Available, Digital Ocean should appear with an "Install" button.
  2. Like
    Google Me Now got a reaction from Paul in How to remove the name from Ticket Support System   
    Thank you to both.
  3. Thanks
    Google Me Now reacted to Paul in How to remove the name from Ticket Support System   
    /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.
  4. Like
    Google Me Now reacted to Michael in How to remove the name from Ticket Support System   
    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
×
×
  • Create New...