Team/Staff Page Templates

Team/Staff Page Templates 1.0

No permission to download
sorry i thought it automaticly added avatar there( would be a nice feature since avatars can change weekly/daily.., i manually added it, but it doesnt look right :-s
 
I couldn't agree more. Although I will be waiting to see some mods come out to fill my needs before I convert my forum, I am enjoying seeing how quick people are to help and how excited the community is. Thanks for this I have big plans for the "pages" feature and your work saved me alot of time.
i know this is OT but how are you displaying them via the forum categorys? or in the "navbar" as im still unable to do this? :(
 
The code is already in place to add the avatar block but you will need to edit it to reflect your forum.

PHP:
                    <a data-avatarhtml="true" class="avatar Av1s NoOverlay" href="members/user.1/">
                    <span style="background-image: url('styles/default/xenforo/avatars/avatar_male_m.png');" class="img m"></span></a>
                    <h4 class="username page_memberName"><a title="" href="members/user.1/" class="username NoOverlay StatusTooltip">Founder</a></h4>

So the "styles/default/xenforo/avatars/avatar_male_m.png" will have to be replaced with the actual path for user.1 avatar and "Founder" will have to be edited to the username.

You need to do that for each entry and in addition, for anyone but the founder (who presumably is user.1), you will need to edit the "members/user.1/" accordingly.
 
The code is already in place to add the avatar block but you will need to edit it to reflect your forum.

PHP:
                    <a data-avatarhtml="true" class="avatar Av1s NoOverlay" href="members/user.1/">
                    <span style="background-image: url('styles/default/xenforo/avatars/avatar_male_m.png');" class="img m"></span></a>
                    <h4 class="username page_memberName"><a title="" href="members/user.1/" class="username NoOverlay StatusTooltip">Founder</a></h4>

So the "styles/default/xenforo/avatars/avatar_male_m.png" will have to be replaced with the actual path for user.1 avatar and "Founder" will have to be edited to the username.

You need to do that for each entry and in addition, for anyone but the founder (who presumably is user.1), you will need to edit the "members/user.1/" accordingly.

Only problem with the avatar i noticed it is to big for the square
 
Works fine for me :confused:

View attachment 3890

Using this code:
PHP:
<span style="background-image: url('data/avatars/m/0/1.jpg?1286374161');" class="img m"></span></a>
moz-screenshot.png

http://gamejunkies.org/community/pages/moderation-team/
 
Great job! Thanks for all your work. I've been pulling my hair out trying to design pages. You're a lifesaver.
 
I finally had the time to look at the pages template, and I notice it's just HTML and not actually using the potential of the XenForo Page node?

Finding the founder, his avatar, the admins, super mods and mods, automatically .. should be possible.
Was kinda hoping it would do that.
 
offtopic, for html5, i recommend to close your tags; <br> should be <br />
 
I finally had the time to look at the pages template, and I notice it's just HTML and not actually using the potential of the XenForo Page node?

Finding the founder, his avatar, the admins, super mods and mods, automatically .. should be possible.
Was kinda hoping it would do that.
These were written before I knew the syntax, etc. so they're just static pages.
It wouldn't be too difficult to edit to semi-automate it, although the userid and text will always have to be manually entered.
 
offtopic, for html5, i recommend to close your tags; <br> should be <br />
I've seen a bit of discussion about that on the web and it seems like <br> is the one to use.

Interestingly, if you view source here on a thread, the tags are <br>.
 
In my opinion, I feel that single tags simply should be closed, just like normal tags :)
Not <img> but <img /> for example :) Oh well, if HTML5 allowed <br> and <br /> then I guess <br> is no longer deprecated.
 
I'm really glad you posted these text files for this. I'm really learning a lot about xf coding by seeing what you did. Thanks!

Edit: I see the screen shots, but do you have a link of these in action?
 
Top Bottom