Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 02/01/20 in all areas

  1. I also agree , i also want to say something they should release some more beta and RC version before release stable version to avoid release patch version just after few days. and need to much improvement in admin UI as per modern trends, As everybody know that now days mobile users are increased.
    1 point
  2. not by default I think... there would be workarounds, e.g you could... add links to Lara's menus - you could upload these files anywhere, you wouldn't particularly need to use WHMCS to upload them. create a widget to output these links - if you're going to use downloads for this, then that's a query to the tbldownloads database table. the Staff Noticeboard addon (already within WHMCS) would be an option, but it doesn't natively support clickable links - it has it's own homepage widget, but it's encrypted, so to make it's links clickable would probably require a custom widget. (worth noting that the staff noticeboard addon is supposedly being deprecated/removed, but it's still currently in the v7.9 beta). various admin hook points would be available depending on how/where you wanted to show these links. there would be various staff addons available in Marketplace, but i'm not sure if any would use downloads... check them out for yourself though. downloads aren't really supposed to be used by admins in this way - they're for clients/products... so if you use this, I wouldn't particularly add anything that you wouldn't want a client to see!
    1 point
  3. no worries - all I did was quickly take the example AdminHomepage hook from the docs, copied the <div> from the badges.php widget and tweaked the output a little (removed icons, classes and added some inline CSS)... 🙂 <?php add_hook('AdminHomepage', 1, function($vars) { return '<div class="row home-status-badge-row"> <div class="col-sm-6"> <div class="health-status-block status-badge-cyan clearfix"> <div style="color:black; font-size: 20px; text-align: center;"> Mission: Lorem ipsum dolor sit amet, consectetur adipiscing elit. </div> </div> </div> <div class="col-sm-6"> <div class="health-status-block status-badge-cyan clearfix"> <div style="color:black; font-size: 20px; text-align: center;"> Vision: Lorem ipsum dolor sit amet, consectetur adipiscing elit. </div> </div> </div>'; }); I think I have more belief in you being able to write this type of hook than you do yourself. 😎
    1 point
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated