Hi,
Just thought i show the following if anyone is interested.
How to add Facebook Like button to your whmcs pages, ideal for KB
Register at http://developers.facebook.com/setup/ and get an APP ID
Change the code bellow and replace YOUR APP ID with your id number.
Add the following code to the end of header.tpl
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({appId: 'YOUR APP ID', status: true, cookie: true,
xfbml: true});
};
(function() {
var e = document.createElement('script'); e.async = true;
e.src = document.location.protocol +
'//connect.facebook.net/en_US/all.js';
document.getElementById('fb-root').appendChild(e);
}());
</script>
Then on your page templates add the like button:
<script src="https://connect.facebook.net/en_US/all.js#xfbml=1"></script><fb:like href="{$whmcs_url}"></fb:like>