Kodunuzun sonuna, tüm sosyal medya değişkenlerinin boş olup olmadığını kontrol eden ve eğer hepsi boşsa bir mesaj gösteren bir ifade ekleyebilirsiniz. İşte bu kontrolü eklemek için bir örnek:
// Mevcut kodunuzun sonuna eklenecek
$allEmpty = empty($face) && empty($twit) && empty($insta) && empty($pin) && empty($whats) && empty($tele) && empty($tum) && empty($you) && empty($lin) && empty($dev) && empty($git) && empty($steam) && empty($reddit) && empty($discord) && empty($twich) && empty($skype);
if ($allEmpty) {
echo $L['None']; // veya istediğiniz bir mesajı burada gösterebilirsiniz
}