Author Topic: [MOD] ACP Notice Field in Users Profile  (Read 34386 times)

0 Members and 1 Guest are viewing this topic.

Offline TheOracle

  • Hero Member
  • *****
  • Posts: 875
    • View Profile
Re: [MOD] ACP Notice Field in Users Profile
« Reply #15 on: January 21, 2006, 05:20:07 PM »
Quote

I've insert the idea of Stoleti


Would it be possible to share what you inserted from Stoleti ? Perhaps others would also like to add it. :)

Offline Loda

  • Sr. Member
  • ****
  • Posts: 353
    • View Profile
    • Fotosucht Schweiz
Re: [MOD] ACP Notice Field in Users Profile
« Reply #16 on: January 21, 2006, 05:23:35 PM »
ohh.. sorry..
i add the step 7 in the first post!  :wink:

Offline TheOracle

  • Hero Member
  • *****
  • Posts: 875
    • View Profile
Re: [MOD] ACP Notice Field in Users Profile
« Reply #17 on: January 21, 2006, 05:24:41 PM »
Excellent. Thanks for adding this. 8)

Offline Stoleti

  • Hero Member
  • *****
  • Posts: 574
    • View Profile
Re: [MOD] ACP Notice Field in Users Profile
« Reply #18 on: January 21, 2006, 05:32:42 PM »
@ Loda :

Thanks  :D

Offline TheOracle

  • Hero Member
  • *****
  • Posts: 875
    • View Profile
Re: [MOD] ACP Notice Field in Users Profile
« Reply #19 on: January 21, 2006, 06:11:50 PM »
@Loda:

Would it also be possible to see a screenshot of this MOD ? :)

Offline Loda

  • Sr. Member
  • ****
  • Posts: 353
    • View Profile
    • Fotosucht Schweiz
Re: [MOD] ACP Notice Field in Users Profile
« Reply #20 on: January 21, 2006, 07:00:56 PM »
@Loda:

Would it also be possible to see a screenshot of this MOD ? :)
yes!

Offline TheOracle

  • Hero Member
  • *****
  • Posts: 875
    • View Profile
Re: [MOD] ACP Notice Field in Users Profile
« Reply #21 on: January 21, 2006, 07:02:39 PM »
Quote

is it ok for you?


Disgarding the fact it isn't my language, it is perfect. 8)

Offline Stoleti

  • Hero Member
  • *****
  • Posts: 574
    • View Profile
Re: [MOD] ACP Notice Field in Users Profile
« Reply #22 on: January 21, 2006, 07:22:15 PM »
this MOD its perfect  8)

Offline trez

  • Hero Member
  • *****
  • Posts: 613
    • View Profile
    • blog / photography
Re: [MOD] ACP Notice Field in Users Profile
« Reply #23 on: February 13, 2006, 11:23:50 AM »
How to show the notiz in the comment_bit under the username ? I tried using the tags for the profile, but nothing is shown

Offline Loda

  • Sr. Member
  • ****
  • Posts: 353
    • View Profile
    • Fotosucht Schweiz
Re: [MOD] ACP Notice Field in Users Profile
« Reply #24 on: February 13, 2006, 11:46:27 AM »
hi,
try this:
http://www.4homepages.de/forum/index.php?topic=10998.msg56191#msg56191

and than you can insert in your comment_bit:
Code: [Select]
{comment_user_notice}
i hope this works. i've never tested it. please let me know if it works.

Offline trez

  • Hero Member
  • *****
  • Posts: 613
    • View Profile
    • blog / photography
Re: [MOD] ACP Notice Field in Users Profile
« Reply #25 on: February 13, 2006, 11:49:00 AM »
-----
thanks for the fast answer :) :) IT WORKS!
« Last Edit: February 13, 2006, 12:01:28 PM by trez »

Offline m.a

  • Jr. Member
  • **
  • Posts: 83
    • View Profile
Re: [MOD] ACP Notice Field in Users Profile
« Reply #26 on: February 07, 2007, 02:46:30 AM »
Hi Loda,
Thanks for this Mod!
Function = Perfect.


m.a

Offline gustav

  • Jr. Member
  • **
  • Posts: 73
    • View Profile
Re: [MOD] ACP Notice Field in Users Profile
« Reply #27 on: February 09, 2007, 10:41:18 AM »
Is it possible to add a button to the end of the message, that will delete the message? So that a user can get ridd of the messege after he has read it....
.... and maybe a second thing like "automatically delete message, if message is older than x days"... so the function to display the message checks the date of the message and erases it if older than x days...
Cause it will get hard to keep track of all messages as an admin... and this all will make sure the users don't see some obsulete stuff for too long....

Offline m.a

  • Jr. Member
  • **
  • Posts: 83
    • View Profile
Re: [MOD] ACP Notice Field in Users Profile
« Reply #28 on: November 16, 2007, 03:35:24 AM »
Is it possible to add a button to the end of the message, that will delete the message? So that a user can get ridd of the messege after he has read it....
.... and maybe a second thing like "automatically delete message, if message is older than x days"... so the function to display the message checks the date of the message and erases it if older than x days...
Cause it will get hard to keep track of all messages as an admin... and this all will make sure the users don't see some obsulete stuff for too long....

Hi gustav,

I dont have exactly understood which you mean, but I think the fact that it is which you means and needs (probably)!
in member_editprofile.html
add this:
Code: [Select]
         {if user_notice}
          <tr>
            <td class="row2" valign="top"><b> {lang_user_notice}</b><br>{user_notice}</td>
            <td class="row2">
<textarea type="text" name="user_notice" value="{user_notice}" cols="12" rows="7" wrap="virtual" class="textarea" />{user_notice}</textarea>
            </td>
          </tr>
             {endif user_notice}

and in member_profile.html
add this:
Code: [Select]
{if user_notice}
          <tr>
            <td class="row2" valign="top"><b> {lang_user_notice}</b></td>
            <td class="row2"><b>{user_notice}</b>
            </td>
          </tr>
          {endif user_notice}

m.a
« Last Edit: November 16, 2007, 03:45:33 AM by m.a »