PDA

View Full Version : Display notification for custom Social Groups ???


v123shine
01-24-2013, 05:03 PM
Dear vbulletin Team

I want to display a 'Notification' only in Social Groups ID 106 and 28. How can i do that?

Can someone help me, please.

v123shine
01-26-2013, 06:36 AM
Help me... please

--------------- Added 1359222528 at 1359222528 ---------------

Please help me...

v123shine
01-28-2013, 01:46 PM
help me..

v123shine
01-30-2013, 01:36 PM
OMG...NO BODY HELP ME!!!

v123shine
01-31-2013, 05:04 PM
Please help me...

darnoldy
01-31-2013, 10:30 PM
I have never worked with social groups--just don't have them.

Since nobody seems to know the answer... I'll give you a place to start:

<if condition="is_member_of($vbulletin->userinfo, 1, 2, 3)"></if>The above conditional works to show stuff only to people in certain Usergroups. It may work if you put your social group IDs in there. Try it and see.

v123shine
02-02-2013, 12:44 PM
Thank you 'darnoldy' for your help but i can't using your code.

I want to show information only in Social Groups ID 106 and 28, Others social group ID i dont want to show the information.

I know that is posible. But why nobody in "vBulletin Team" help me.

darnoldy
02-02-2013, 08:13 PM
But why nobody in "vBulletin Team" help me.
Probably because this site is not run by vBulletin, but by a group of volunteer users.

Scandal
02-06-2013, 08:35 PM
Dear vbulletin Team

I want to display a 'Notification' only in Social Groups ID 106 and 28. How can i do that?

Can someone help me, please.
Although I haven't understand what exactly you want to do, you can use the following conditional inside a template:
<if condition="$group[groupid] == 106 OR $group[groupid] == 28">
MESSAGE
</if>