Kunnskapsbase

  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.

Kundeområdet > Kunnskapsbase > 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>
Var dette svaret til hjelp?
157 brukere syntes dette svaret var til hjelp 325 Stemmer

Les også disse