Sample informers - Additional Features - uCoz System management and tuning - uCoz Community
You logged in as Guest
Username/E-mail:
Recent messages · Members · Forum rules · FAQ · SEARCH Registration · Log in


We are in the second round! Let's keep voting!

Page 1 of 212»
uCoz Community » uCoz System management and tuning » Additional Features » Sample informers (customized userlist, top posters, visited members)
Sample informers
kibaweDate: Thursday, 2008-10-30, 11:08 Am | Message # 1
Newbie
Group: Checked
Messages: 14
Awards: 0
Reputation: -2
Status: Offline
Here you can find samples of some informers:



Greetings!!!

Is it possible that I can make a customized userlist page.
what I mean is that, I will make a new page (ex.. http://mysite.ucoz.com/customuserlist.html ).. then,
I want to create a table visible to all (even not registered) with a number of cols example

the registered display name of members :: the registered link (in my case i replace it with friendster) :: online/offline status :: usergroup :: online/offline status

my theory is that I will make a block, then make a javascript, then manually make an array of users, but, it takes me constant update sad


http://kibawe.my1.ru | http://marawi.ucoz.net (Under Cons) | nFormers
 
ArmarosDate: Thursday, 2008-10-30, 11:27 Am | Message # 2
Haunter
Group: Checked
Status: Offline
Why do you need to make a custom member list? There is already given one, which you can modify how you need.
kibaweDate: Thursday, 2008-10-30, 11:32 Am | Message # 3
Newbie
Group: Checked
Messages: 14
Awards: 0
Reputation: -2
Status: Offline
how to modify?

http://kibawe.my1.ru | http://marawi.ucoz.net (Under Cons) | nFormers

Message edited by kibawe - Thursday, 2008-10-30, 11:40 Am
 
ArmarosDate: Thursday, 2008-10-30, 2:10 Pm | Message # 4
Haunter
Group: Checked
Status: Offline
You can choose what to display at: CP -> Users -> Module settings.
kibaweDate: Thursday, 2008-10-30, 2:31 Pm | Message # 5
Newbie
Group: Checked
Messages: 14
Awards: 0
Reputation: -2
Status: Offline
ic, thnx!!

but is there a way to modify the $body$ block???


http://kibawe.my1.ru | http://marawi.ucoz.net (Under Cons) | nFormers
 
ArmarosDate: Thursday, 2008-10-30, 4:57 Pm | Message # 6
Haunter
Group: Checked
Status: Offline
Quote (kibawe)
but is there a way to modify the $body$ block???
No.
kibaweDate: Friday, 2008-11-07, 6:24 Am | Message # 7
Newbie
Group: Checked
Messages: 14
Awards: 0
Reputation: -2
Status: Offline
umm... in case somebody is still interested, i have made a customized user list
http://kibawe.my1.ru/index/0-17 <-- heres sample

HOW TO DO
1. Create Informer
2. Select Option --> User
3. then by Reputation (or ur choice)
4. Modify Template
5. Make a new page, then insert the $MYINF_#$, where # is the number of the informer

the informers template

Code

<table width="100%" style="border-color:gray;"><tr>
<td width="10%" align="center"><img src="$AVATAR_URL$" width="40" alt="$TITLE$"></td>
<td width="10%" align="center"><a href="$PROFILE_URL$">$USERNAME$</a></td>
<td width="10%" align="center">$FULL_NAME$</td>
<td width="10%" align="center">$GROUP_NAME$</td>
<td width="10%" align="center">$COUNTRY$</td>
</tr></table>

the page

Code

<font color="red">:: [b]Members List[/b] ::</font>[hr]
<table width="100%" style="border-color:gray;"><tr>
<td width="10%" align="center">Avatar</td>
<td width="10%" align="center">Username</a></td>
<td width="10%" align="center">Fullname</td>
<td width="10%" align="center">Group</td>
<td width="10%" align="center">Location</td>
</tr></table>
$MYINF_#$

i hope this will helpl


http://kibawe.my1.ru | http://marawi.ucoz.net (Under Cons) | nFormers

Message edited by kibawe - Friday, 2008-11-07, 7:09 Am
 
kibaweDate: Sunday, 2008-11-09, 9:48 Am | Message # 8
Newbie
Group: Checked
Messages: 14
Awards: 0
Reputation: -2
Status: Offline
before all, please allow me

thnx for the complement from to those person who visited in the site ive made in ucoz (i mean the site in my siggy).
since ive posted here, ive got many mails in my admin mail of asking how i made my

  • top forum poster
  • members visited today
    by using the informer.

    since im too lazy to reply to all, and for future purposes that other guys will ask me same, and in return to help the community specially for those who are interested

    i would like to share 2 u how.

    =============
    TOP FORUM POSTER
    =============

    Step 1. Creating Informer

  • from CP -> Tools -> Informers
    Create Informer

    in section
    Select User
    notice, additional option will appear

    in sorting mode
    Select Num. of Forum Messages

    number of entries: that is how many TOP members would you like to appear

    number of columns: in my site ive used 1

    then click Create

    Step 2. Creating Informer Template

  • from CP -> Tools -> Informers

    Customized the Informer Template (found the right most part, just hover the images)
    then script window will appear

    then paste this code below

    Code

    <table width="100%">
    <td width="40" align="center" valign="middle">
    <img src="$AVATAR_URL$" width="30"></td><td width="50%" align="center" valign="middle"><a href="$PROFILE_URL$">$USERNAME$</a></td><td width="50%" align="left" valign="middle"><b>$FORUM_POSTS$</b> msg(s)</td></table>

    note: there are many variables below that u can play with. ur knowledge with HTML is a great help.

    Step 3. Using the Code

  • from CP -> Tools -> Informers
    in the right most part there is an input box containing $MYINF_#$ <- that is the var for your informer

    then in your template pages, just paste $MYINF_#$ in any way where u want it to be .

    ***

    =============
    Visited Members
    =============

    Step 1. Creating Informer

  • from CP -> Tools -> Informers
    Create Informer

    in sorting mode
    Select Members who have visited your site for the current day

    then click Create

    Step 2. Creating Informer Template

  • from CP -> Tools -> Informers

    Customized the Informer Template (found the right most part, just hover the images)
    then script window will appear

    then paste this code below

    Code

    <a href="$PROFILE_URL$" class="$CLASS$">$USERNAME$</a>,     

    * thats the default code

    Step 3. Using the Code

  • from CP -> Tools -> Informers
    in the right most part there is an input box containing $MYINF_#$ <- that is the var for your informer

    then in your template pages, just paste $MYINF_#$ in any way where u want it to be .

    * * *
    I hope this will help.
    Thanx for giving me opportunity to help, enjoy!!!

    Best Regards!


    http://kibawe.my1.ru | http://marawi.ucoz.net (Under Cons) | nFormers

    Message edited by kibawe - Sunday, 2008-11-09, 10:20 Am
  •  
    ArmarosDate: Sunday, 2008-11-09, 2:09 Pm | Message # 9
    Haunter
    Group: Checked
    Status: Offline
    I really doubt, those two tutorials was needed, but alright for making them.
    Info on informers was already here: http://forum.ucoz.com/forum/6-457-1
    1590Date: Sunday, 2008-11-09, 4:47 Pm | Message # 10
    Newbie
    Group: Users
    Messages: 3
    Awards: 0
    Reputation: 0
    Status: Offline
    this is ridiculous,
    I want to create a whole new table for the informer instead of having lonely links hovering pointlessly on my page.
    is it in anyway possible to give an example of the table code with the informer code incorporated?
     
    MiTcHDate: Sunday, 2008-11-09, 5:10 Pm | Message # 11
    Newbie
    Group: Checked
    Messages: 3
    Awards: 0
    Reputation: 0
    Status: Offline
    Could u explain if u know how, to make the recent visitors show up in the colours that their forum group designates, as opposed to the standard template font.
     
    ArmarosDate: Sunday, 2008-11-09, 5:51 Pm | Message # 12
    Haunter
    Group: Checked
    Status: Offline
    Quote (MiTcH)
    Could u explain if u know how, to make the recent visitors show up in the colours that their forum group designates, as opposed to the standard template font.
    uCoz already answered you on this question. No need to re-ask.
    ArmarosDate: Sunday, 2008-11-09, 7:45 Pm | Message # 13
    Haunter
    Group: Checked
    Status: Offline
    Quote (1590)
    How about providing a link to the answer instead of just being a condescending snob?
    How about you start to respect other people or get punished for that?
    Here you go, inpatient one: http://forum.ucoz.com/forum/7-2538-1
    MiTcHDate: Monday, 2008-11-10, 4:15 Am | Message # 14
    Newbie
    Group: Checked
    Messages: 3
    Awards: 0
    Reputation: 0
    Status: Offline
    in all honesty armaros, he gave a vague answer that i, like most i would imagie had no idea how to interpret.. sorry for trying to get another perspective on it.
     
    ArmarosDate: Monday, 2008-11-10, 7:56 Am | Message # 15
    Haunter
    Group: Checked
    Status: Offline
    Quote (MiTcH)
    in all honesty armaros, he gave a vague answer that i, like most i would imagie had no idea how to interpret.. sorry for trying to get another perspective on it.
    But it doesn't change fact.
    uCoz Community » uCoz System management and tuning » Additional Features » Sample informers (customized userlist, top posters, visited members)
    Page 1 of 212»
    Search: