I am a newbie and this is the first time ever I am asking a question in this community.
One of my friends just recently update his WHMCS to the latest version and suddenly he got a branding line before the footer area. In the previous version, he was able to remove that line by editing the footer.tpl file but in this version, he couldn't find it because now it's written in tags. (p and a)
I found one jquery code mentioned below:
$(document).ready(function() {
$("p a").each(function(){
if( $(this).attr("href")=="http://www.whmcs.com/" ) {
$(this).parent().hide();
}
});
});
But I don't know either it's fine or where to put this one.
Please guide and help how to remove it, as now in the client area it is visible to everyone now.