$(document).ready(function() {
$("p a")
.each(function()
{
if( $(this).attr("href")=="http://www.whmcs.com/" ) {
$(this).parent().hide();
}
});

}); 
