1

Topic: Custom templates

Hi, I wanted to revamp my dating site and one of the new custom features I wanted my graphic designer to add was to group all members into 7 groups(separated by color) with each member of each group automatically having each representative color as the default profile background color. This would be part of our branding as each color is in our logo. Is this possible? Thanks.

Social

2

Re: Custom templates

It is possible.
One of the ways to get is to use {member_group_id} variable value.

1. Open your header.tpl and add condition:
<!-- IF member_group_id -->
    <!-- IF member_group_id == "1" -->
       link to admins group css file or plain css code for changing background color
    <!-- ELSEIF member_group_id == "2" -->
      similar for group with id 2
    <!-- ELSEIF blabla -->
     similar
    <!-- ELSE -->
      regular
    <!-- ENDIF -->
<!-- ENDIF -->


member_group_id has value on member_profile page, member_pictures, member_videos, member_... etc. AND at account_home page.


Good luck

www.vldMagic.com - first choice customizations help desk
www.vldCrowd.com/radioact - my profile at vldCrowd

3

Re: Custom templates

Thanks, will try this!

Social