Log in

View Full Version : [Addon] Usergroup Based Profile Conditionals (eBux Usage)


Stangsta
03-01-2006, 10:00 PM
Usergroup(s) Based Profile Conditionals (eBux Usage)

What it does: Simply put, this is an addon for the Myspace Profile Re-Write PRO! 1.0.0 (https://vborg.vbsupport.ru/showthread.php?t=109094) template Mod. This will allow you to have a conditional or per usergroup(s) to "turn on and off" hacks in the profile. The Primary use for this hack, is to be able for users to purchase a "secondary usergroup" in eBux to gain access to various parts of the profile.

I STRONGLY RECCOMEND that you make ALL modifications to a "test style" first. If you do not have one, create one. This way, when you mess up, your users will not be affected.

Now, this is where the fun begins.

Installation: First start by looking at your already modified MEMBERINFO template. Haven't modified it yet? Go here - https://vborg.vbsupport.ru/showthread.php?t=109094

Once you have made all the modifications and are happy with your profile, decide what "features" you want to turn on and off. Then create a usergroup for one or more of those features. Some examples are: "Can display media(video)", "Can display friends and/or buddies", "can use comments", etc. You can also use this for ANY profile field. It's up to YOUR needs and imagination.

Now, use this code to wrap around the feature you want to associate with a usergroup. Be sure to change the "XX" to the usergroup number you wish to give access to.

This goes on the top of the "block" of code you are working with <if condition="$bbuserinfo[usergroupid] == XX">
This goes on the bottom of the code<else /></if>
So, what it should look like (this is to turn the buddylist on/off in the profile)<if condition="$bbuserinfo[usergroupid] == XX">
<br />$FNB_HTML<br /><else /></if>




Now, lets say you would rather do this for multiple usergroups Use this instead<if condition="is_member_of($bbuserinfo, X, Y, Z)">
<br />$FNB_HTML<br /><else /></if> Just change the x,y,z to whatever usergroup numbers you wish.

This is the building blocks. Its a fairly simple hack, just a little time consuming (maybe 10-30 minutes to install tops) I will do my best to support this thread :)

Here's 1 more example for the video portion: <if condition="is_member_of($bbuserinfo, X, Y, Z)">
<tr class="alt2">
<td align="left" valign="top"> <div align="center"><EMBED SRC="$userinfo[field10]"></div></td>
</tr>
<else /></if>I didn't put screenshots because I don't think they are necessary, but If you must have them, ask and ill get some up tomorrow night.



BE SURE TO CLICK INSTALL!!!!

FleaBag
03-02-2006, 12:51 PM
I have a feeling that this is almost what I have been looking for (https://vborg.vbsupport.ru/showthread.php?t=101306). Great work! Thanks. :)

caliman
03-02-2006, 01:10 PM
You rock!! I know what I am doing this weekend.

dirtycrow
03-02-2006, 03:02 PM
how do i create a test style? thanks.

Stangsta
03-02-2006, 04:46 PM
I have a feeling that this is almost what I have been looking for (https://vborg.vbsupport.ru/showthread.php?t=101306). Great work! Thanks. :)
Looks like it to me :)

how do i create a test style? thanks.In your acmincp > styles and templates > style manager > at the bottom, click add new style.

Alteratively, you can make a child style which will mimic one of your other styles that you choose. Theres a link in the dropdown, "Add child style".

tmcyouth
03-16-2006, 05:51 PM
Technically, can I use this code without the entire MySpace Re-Write Pro mod? I'm planning on installing that, but using this in the meantime would be great.

Stangsta
03-16-2006, 06:44 PM
Technically, can I use this code without the entire MySpace Re-Write Pro mod? I'm planning on installing that, but using this in the meantime would be great.Yes, you can use it for other things too.

yayvb
03-24-2006, 01:07 AM
Not to hijack this thread but... :)
Rather than hard code which usergroup can use this, how would I
set conditionals for if they have a certain usergroup permission.

I had a coder add 4 custom usergroup options, lets say for instance the first one is called: can_user_enlarge_thumbs

The admincp|usergroups|usergroup manager seems to update the correct entries in the databse, but now how can I limit only people with the usergroup setting: can_user_enlarge_thumbs set to YES?

Thanks in advance. I can't seem to find any examples but I know that's what usergroup codings must do :)

cmbehan
04-14-2006, 03:12 AM
Could this be used in conjunction with this hack: https://vborg.vbsupport.ru/showthread.php?t=91407&page=5?

I'd like to be able to offer the postbit switching hack only to specific usergroups....