Hi,
Create a file called getkudos.php (or any name you want) copy the code below:
<?
/*
Hook Widget GetKudos ( https://getkudos.me/ ) para WHMCS.
WHMCS.blog.br - Edvan Sampaio
*/
if (!defined("WHMCS"))
die("Acesso restrito!");
function getkudos($vars) {
$getkudos='whmcs'; //insert your brand/id getkudos
$js = '
<!-- Start of GetKudos Script -->
<script>
(function(w,t,gk,d,s,fs){if(w[gk])return;d=w.document;w[gk]=function(){
(w[gk]._=w[gk]._||[]).push(arguments)};s=d.createElement(t);s.async=!0;
s.src=\'//static.getkudos.me/widget.js\';fs=d.getElementsByTagName(t)[0];
fs.parentNode.insertBefore(s,fs)})(window,\'script\',\'getkudos\');
getkudos(\'create\', \''.$getkudos.'\');
</script>
<!-- End of GetKudos Script -->
';
return $js;
}
add_hook("ClientAreaFooterOutput",1,"getkudos");
?>
Change the brand/id getkudos you created!
$getkudos='whmcs'; //insert your brand/id getkudos
Save the changes and send the file to the /includes/hooks/
Link http://www.whmcs.blog.br/personalizacao/getkudos-para-whmcs/
Done!