Follow vBSEO on Twitter
vBulletin Modifications
  • Forums
  • Add-Ons
  • Template Modifications
  • Styles
  • Graphics
  • Tutorials
  • Support Center
  • Register
  • vBulletin SEO

Member Log In

Site Navigation

  • Register
  • Members List
  • Social Groups
  • Search
  • Today's Posts
  • Mark Forums Read

Latest Modifications

  • [vB 3.8.4] THX - Hack for VB. 3.8.4
    By: bluedog
  • [vB 3.8.4] Cyb - Chatbox V.2.3
    By: bluedog
  • [vB 4.0.x] PHPKD - Advanced Quick...
    By: PHPKD
  • [vB 3.6.x] StopSpam
    By: flappi282
  • [vB 3.8.x] vBulletin Chat Addon for...
    By: 123flashchat

Latest Template Mods

  • [vB 4.0.x] Remove My Profile Link...
    By: Ak Worm
  • [vB 3.8.x] Images DownloadBox...
    By: cRs!MP
  • [vB 3.8.x] Adviertise Mod On Forum...
    By: MG4
  • [vB 3.8.4] Images PassWordBox...
    By: cRs!MP
  • [vB 3.8.4] Footer Follow Ups
    By: Ak Worm

Latest Styles

  • [vB 4.0.x] 4.0.3 - VB4STYLE-TWEETA...
    By: Belon
  • [vB 4.0.x] [4.0.3] vbdesigns.de...
    By: Belon
  • [vB 3.8.4] CompletevB - Skylight
    By: DreadKnight
  • [vB 3.8.3] [vB 3.8.4] Barcelona...
    By: hoiquantinhoc.com
  • [vB 3.8.3] Natures Walk by vBSkin...
    By: Chri5

Latest Graphics

  • [vB ] [anim.]Team Ranks
    By: cRs!MP
  • [vB ] Abstract Circles (3...
    By: cRs!MP
  • [vB ] PlayStation Rank Images
    By: cRs!MP
  • [vB 3.6.12] Heavy Stroked Button...
    By: Shelley
  • [vB ] Minature Ranks.
    By: Shelley
vBulletin Modifications » vBulletin Modifications » vBulletin 3.5 / 3.6 Hack Releases » User Status
Reply
Page 2 of 2 < 1 2

 

  • Thread Tools
Download Options
You Must Register First
To Download This Modification

Report A Bug
Bugs
No bugs found in the system. If you have found a bug, please report a bug here
Submit A Bug | View All Bugs
  
Not Supported
[vB 3.6.7 PL1] User Status (75)
Released: 11-03-2007, 02:59 PM
Modification Information:
zx-zone's Avatar Author: zx-zone
Last Online: 08-20-2008
Installer Included: 0 Additional queries added to database: 0 Template Edits:
File Edits: New Files: New Phrases:

Plugin
same as YM status ^^

Update: other way

Install

1.Add new user field
Go to AdminCP >
User Profile Fields > Add New User Profile Field
Code:
Profile Field Type: Single-Line Text Box
Title: User Status
Description: Type Your status
Max length of allowed user input: <it's up to you>
Field Length: <it's up to you>
Field Required: No
Field Editable by User: Yes
Private Field: No
Field Searchable on Members List: No
Show on Members List: No
Display Page: Edit Profiles


Note the field ID (shown in the User Profile field manager)

2.Edit template navbar


Add at top
Code:
<if condition="$show['member']">
<form action="profile.php?do=updateprofile" method="post" id="profileform">
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="do" value="updateprofile" />
<div class="smallfont"><strong>Your Status</strong></div>
<input type="text" class="bginput" name="fieldX" value="$bbuserinfo[fieldX]" size="25" maxlength="200" dir="ltr" />
<input type="submit" class="button" value="$vbphrase[save_changes]" accesskey="s" />
</form>
</if>
2.Edit template postbit (or postbit_legacy)
add this code at place you want to show user status
Code:
<div class="smallfont"><strong>Status: $post[fieldX]</strong></div>
Note: CHANGE X TO THE FIELD ID NOTED

Done!



Screenshots
Screenshots
File Type: jpg status1.jpg (17.8 KB, 575 views)
File Type: jpg status2.jpg (22.1 KB, 506 views)
File Type: jpg status3.jpg (9.1 KB, 635 views)



Old 12-23-2007, 09:20 AM   #11
zx-zone
Advanced Coder

zx-zone's Avatar

Activity Longevity
0/20 10/20
Today Posts
0/3 sssssss21
zx-zone is on a distinguished road
Status: Offline Default
at this code
Code:
<if condition="$show['member']">
<form action="profile.php?do=updateprofile" method="post" id="profileform">
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="do" value="updateprofile" />
<div class="smallfont">
<strong>Your Status</strong></div>
<input type="text" class="bginput" name="icq" value="$bbuserinfo[icq]" size="25" maxlength="30" dir="ltr" />
<input type="submit" class="button" value="$vbphrase[save_changes]" accesskey="s" />
</form>
</if>
ex: maxlength="30" => maxlength="200"
Reply With Quote Author of thread
Old 12-23-2007, 10:51 AM   #12
Igorow
vB Newbie

Activity Longevity
0/20 10/20
Today Posts
0/3 ssssssss3
Igorow is on a distinguished road
Status: Offline Default
xD Thx.

Edit 2.
Not working... ;/ I'm changed it in Navbar and in modifyprofile. Results 0.

Last edited by Igorow; 12-23-2007 at 10:53 AM.
Reply With Quote
Old 12-23-2007, 12:17 PM   #13
zx-zone
Advanced Coder

zx-zone's Avatar

Activity Longevity
0/20 10/20
Today Posts
0/3 sssssss21
zx-zone is on a distinguished road
Status: Offline Default
@Igorow: (update new way) review first post
Reply With Quote Author of thread
Old 12-23-2007, 02:23 PM   #14
Igorow
vB Newbie

Activity Longevity
0/20 10/20
Today Posts
0/3 ssssssss3
Igorow is on a distinguished road
Status: Offline Default
Hmm.... Another Bug .

Code:
<if condition="$show['member']">
<form action="profile.php?do=updateprofile" method="post" id="profileform">
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="do" value="updateprofile" />
<div class="smallfont"><strong>Your Status</strong></div>
<input type="text" class="bginput" name="fieldX" value="$bbuserinfo[fieldX]" size="25" maxlength="200" dir="ltr" />
<input type="submit" class="button" value="$vbphrase[save_changes]" accesskey="s" />
</form>
</if>
This Scipt doesn't work. Only changing Status in Profile makes efects...( I change FieldX to good one.)

Please Fix it

Thx
Reply With Quote
Old 02-12-2008, 06:58 AM   #15
psyrooze
vB Newbie

Activity Longevity
0/20 9/20
Today Posts
0/3 ssssssss9
psyrooze is on a distinguished road
Status: Offline Default
nice one thanks for sharing:D
Reply With Quote
Old 02-12-2008, 05:45 PM   #16
St.Frame
vB Newbie

Activity Longevity
0/20 8/20
Today Posts
0/3 ssssssss3
St.Frame is on a distinguished road
Status: Offline Default
Thank You !
Reply With Quote
Old 02-18-2008, 11:22 AM   #17
hugos
vB Newbie

Activity Longevity
0/20 12/20
Today Posts
0/3 ssssssss9
hugos is on a distinguished road
Status: Offline Default
thank You Nice good
Reply With Quote Installed
Old 11-26-2008, 06:58 PM   #18
_plumber_
vB Newbie

Activity Longevity
0/20 6/20
Today Posts
0/3 ssssssss1
_plumber_ is on a distinguished road
Status: Offline Default
vBulletin Message
Your submission could not be processed because a security token was missing.

If this occurred unexpectedly, please inform the administrator and describe the action you performed before you received this error.
Reply With Quote
Old 05-16-2009, 11:29 PM   #19
kerverusxp
vB Newbie

kerverusxp's Avatar

Activity Longevity
0/20 11/20
Today Posts
0/3 ssssssss3
kerverusxp is on a distinguished road
Status: Offline Default
Quote:
Tu aportación no podrá ser procesada porque un "security token" faltaba.

Si esto ocurrió inesperadamente, por favor informa al administrador y describe la acción que realizaste antes de recibir este error.
Whois how the fix?
Reply With Quote Installed

Reply
Page 2 of 2 < 1 2

« Scr - Signature Line Image | vbDonator by Mary »

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)

 
Thread Tools
Show Printable Version Show Printable Version
Email this Page Email this Page

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Rules

Similar Threads
Thread Thread Starter Forum Replies Last Post
User Notes xfile vBulletin Modification Requests 5 05-28-2006 09:02 PM



All times are GMT. The time now is 05:30 AM.

Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.3.2 ©2009, Crawlability, Inc.
Transverse Styles
  • Top
  • Archive
  • vBSEO
  • Contact Us
LinkBack
LinkBack URL LinkBack URL
About LinkBacks About LinkBacks
Bookmark & Share
Digg this Thread! Digg this Thread!
Add Thread to del.icio.us Add Thread to del.icio.us
Bookmark in Technorati Bookmark in Technorati
Furl this Thread! Furl this Thread!