By Anastasia on Wednesday, 05 March 2014
Posted in General Issues
Replies 13
Likes 0
Views 679
Votes 0
Hello!

When registration user set his birthday date. And after that how the system notifies all that birthday today at such and such users?
And can system send email to user who has birthday with greetings from site?
Hello,

Perhaps this should go into http://stackideas.com/voices
·
Wednesday, 05 March 2014 17:07
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello,

When the birthday widget is activated, the friend's birthday will then be visible in the user's dashboard area
·
Wednesday, 05 March 2014 16:23
·
0 Likes
·
0 Votes
·
0 Comments
·
Only friend can see birthday?
What about others?

I need (because community is not too big) all users can see birthday at main stream...
(now I use module which takes birthday from Community builder tables, and now new users data goes to easysocial database tables...)
·
Wednesday, 05 March 2014 16:28
·
0 Likes
·
0 Votes
·
0 Comments
·
You only get alerts from your friend's birthday. If you are not a friend of the user, you will not get these alerts on the dashboard. You can however, always view the person's profile
·
Wednesday, 05 March 2014 16:30
·
0 Likes
·
0 Votes
·
0 Comments
·
It's not fun and does not conform to the ideas of the CRM - consumer relationship management.

Website (we do not facebook) itself and community participation should not only attract user communication on the site, but also the attention of the site to the user.
I think EasySocial must have option - send emails to user with birthday greetings.
·
Wednesday, 05 March 2014 16:39
·
0 Likes
·
0 Votes
·
0 Comments
·
Excuse me, but may be you can help me -)

in birthday module I need set link to easysocial profile

now it is:

$html .= "<a href=\"index.php?option=com_comprofiler&task=userProfile&user=" . $day->user_id . "\">" . $day->name . "</a>";

what I should to write to right link to user es-profile?

p.s. how paste the code into message?

http://gyazo.com/50badf54d2d8708ebb8fd03f58aab3df
·
Tuesday, 11 March 2014 18:56
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Anastasia,

The link should behave like this,


<?php
require_once(JPATH_ADMINISTRATOR . '/components/com_easysocial/includes/foundry.php');

$user = Foundry::user($day->user_id);

$html .= "<a href=\"" . $user->getPermalink() . "\">" . $day->name . "</a>";
·
Tuesday, 11 March 2014 21:55
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks a lot Mark!

but URL shows only my username (I logged in to site) on each user at list.
if I log on with another username I see URL with it on each username at birthday list...
but list of users with birthday at this day is correct.
·
Wednesday, 12 March 2014 15:39
·
0 Likes
·
0 Votes
·
0 Comments
·
Sorry but I don't really understand you here
·
Wednesday, 12 March 2014 23:07
·
0 Likes
·
0 Votes
·
0 Comments
·
http://gyazo.com/27a7e25c29aac1d9957a6ce9cea16046

http://gyazo.com/5c6b58a454b65e4d3631d0dbd4a9ddf5

and other people at list has one url - my profile, not theirs.
·
Thursday, 13 March 2014 13:57
·
0 Likes
·
0 Votes
·
0 Comments
·
What module is this? It doesn't seem to be a module from EasySocial and how is this related to the birthdays in EasySocial?
·
Thursday, 13 March 2014 22:32
·
0 Likes
·
0 Votes
·
0 Comments
·
Do not worry, Mark.
This is not your module. This third-party modules.
it is connected to the database CB with birthday.
But I just wanted to put a link to the profile of the ES.
I did not think that it can be so difficult. Since for CB it was pretty easy.
·
Friday, 14 March 2014 14:25
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Anastasia,

We don't have a module for birthdays yet The only area that displays the user's recent birthday is only available on the "width" within the dashboard. Perhaps we could port this code out in the future so that we can use this in a module too.
·
Friday, 14 March 2014 18:22
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post