Kennisbank

  1. How to add "My Projects" button to home page for WHMCS "Project Management" addon.

How to add "My Projects" button to home page for WHMCS "Project Management" addon.

Klantensysteem Home > Kennisbank > Hexa > Customization > How to add "My Projects" button to home page for WHMCS "Project Management" addon.

The code below can be added to clientareahome.tpl. It will add extra button for Projects and will display the number of active projects. Extra third or forth "row" of tiles can be added if there is no room for extra buttons.

<div class="col-md-4"> 
<a title="Projects" href="index.php?m=project_management">
 <div class="info-box bg-warn text-white">
  <div class="info-icon bg-warn-dark">
<span aria-hidden="true" class="icon icon-briefcase"></span>
</div>
   <div class="info-details"> <h4>{$LANG.clientareaprojects}</h4>
    <p>
     <span class="badge">{$projectsnumactive}</span>
    </p>
   </div>
  </div>
</a>
 </div>
Was dit antwoord nuttig?
157 gebruikers vonden dit artikel nuttig 325 Stemmen

Lees ook