Demo:

HAPPY BIRTHDAY MESSAGE IN PROFILE
IPB 2.1.x
Based on 2.0 version from giggsey
Installation time: 2 minutes 24.4 seconds
======================
Description:
This is a very simple and easy to install mod, which allows you to show a birthday message on someone's profile.
============
STEP 1:
======
Open sources/action_public/profile.php
=================
FIND
=================
CODE
//-----------------------------------------
// Birthday
//-----------------------------------------
if ($member['bday_month'])
{
=================
ADD AFTER
=================
CODE
if ($member['bday_month'] == date('n') AND $member['bday_day'] == date('j')) {
$info['birthday_message'] = $this->ipsclass->lang['happy_birthday'];
}
SAVE & UPLOAD
===============
STEP 2:
======
OPEN cache/lang_cache/en/lang_profile.php
=================
FIND
=================
CODE
<?php
$lang = array (
=================
ADD AFTER
=================
CODE
// Happy birthday Mod
'happy_birthday' => "Wishing You A Happy Birthday On Such A Special Day :)",
=========================================================
YOU CAN EDIT THE MESSAGE YOU WANT TO SAY ON THEIR PROFILE
=========================================================
==============
SAVE AND CLOSE
==============
STEP 3:
======
==============================
ADMIN CP EDITS
==============================
Skin Manager -> Your skin -> Edit HTML -> Profile View -> show_profile
=================
FIND
=================
CODE
<script type="text/javascript" src="jscripts/ipb_profile.js"></script>
<div class="borderwrap">
===================
ADD AFTER
===================
CODE
<if="info['birthday_message']">
<div class="borderwrap">
<div class="maintitle">Happy Birthday {$info['name']}</div>
<table cellspacing="1" width="100%">
<tr>
<td nowrap="nowrap" valign="top" class="row1"><span style='color: red;'>{$info['birthday_message']}</td></tr></table></div><br /></if>
=====================
SAVE AND YOU ARE DONE
=====================