BP Birthday Greetings will send birthday greeting notification to the member from community.
BP Birthday Greetings plugin will send a birthday greeting notification to members. You just need to create a DOB field and have to map in the plugin settings, that you can find under options tab of BuddyPress settings.
We have one widget called BuddyPress Birthdays that you can use in sidebars to display the list of member birthdays and can wish them as well using private message functionality of BuddyPress. One shortcode [ps_birthday_list] is also added which can be used to list birthdays as well.
After the activation of this plugin just go to the BuddyPress settings(options tab) page and there select the profile field, in ‘Select DOB Field’ option, that you have created for date of birth.
Yes! It can be translated easily.
There is one filter code that you can add in your child theme or any custom plugin:
add_filter( ‘bp_birthday_empty_message’, ‘ps_change_birthday_message’ );
function ps_change_birthday_message() {
_e( ‘Your Changed Message Here’, ‘bp-birthday-greetings’ );
}
Yes there is one shortcode [ps_birthday_list].
Width and height is to define profile picture width and height. Type is to define the type of the image you want to display.
BuddyPress has two sets of avatar sizes:
Thumb – defaults to 50px square
Full – defaults to 150px square
Note: If you chose type full or thumbnail but defined width and height lesser or higher than the default values then profile pic will be displayed according to the defined size.
Also, if defined width and height is not reflecting then most probably any other plugin or your theme’s CSS rules are overriding it.
Now, we have a filter for this. You can paste the below given code in your child theme’s functions file or any site specific plugin’s file:
add_filter( ‘bp_birthday_cake_img’, ‘ps_change_birthday_img’ );
function ps_change_birthday_img() {
$img = ”;
return $img;
}
Initial Release
Fixed Typo
Added Birthday Widget