Biblioteca de cunoștințe

  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.

Portal clienți > Biblioteca de cunoștințe > 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>
Răspunsul a fost util?
157 utilizatori au considerat informația utilă 325 Voturi

V-ar mai putea interesa și