Welcome,
Guest
.
Please
login
or
register
.
Did you miss your
activation email
?
News:
Did you know that
Elxis 5.x
uses HTML5, CSS3 and pure javascript without external libraries such as jQuery?
Home
Help
Login
Register
Elxis CMS Forum
»
Support
»
Technical support
»
Formatting User Signature Field
« previous
next »
Print
Pages: [
1
]
Author
Topic: Formatting User Signature Field (Read 5687 times)
BeckTek
Newbie
Posts: 32
Formatting User Signature Field
«
on:
February 20, 2008, 09:52:38 »
I need to make the signature area of the User Profile be able to hold a longer Signature. What would I need to modify to make this possible?
Logged
datahell
Elxis Team
Hero Member
Posts: 10356
Re: Formatting User Signature Field
«
Reply #1 on:
February 20, 2008, 23:08:59 »
Open
/components/com_user/user.php
go to line 597
Replace this :
$row->signature = eUTF::utf8_substr($row->signature, 0, 255);
with this:
//$row->signature = eUTF::utf8_substr($row->signature, 0, 255);
The above will remove all length limits. If you wish to make it just a little more larger you can write:
$row->signature = eUTF::utf8_substr($row->signature, 0, 400);
You must do the same in administration.
Open
/administrator/components/com_users/admin.users.php
Go to line 477
Replace this:
$row->signature = eUTF::utf8_substr($row->signature, 0, 255);
With this:
//$row->signature = eUTF::utf8_substr($row->signature, 0, 255);
Save the files. You are done!
Logged
Elxis Team
|
Is Open Source
|
IOS Rentals | IOS AERO
BeckTek
Newbie
Posts: 32
Re: Formatting User Signature Field
«
Reply #2 on:
February 27, 2008, 21:48:15 »
works perfectly thanks
Logged
Print
Pages: [
1
]
« previous
next »
Elxis CMS Forum
»
Support
»
Technical support
»
Formatting User Signature Field