How to edit description lenght
Forum rules
In order the get any support, you will have to do following:
1. Use a describing title!
2. Describe your problem and what happened when the problem occured
3. Tell us what version of phpBB3 you are currently using.
Else your topic may be ignored or locked!
In order the get any support, you will have to do following:
1. Use a describing title!
2. Describe your problem and what happened when the problem occured
3. Tell us what version of phpBB3 you are currently using.
Else your topic may be ignored or locked!
How to edit description lenght
Hey!
How do i change the description length so it's possible to have a long description?
How do i change the description length so it's possible to have a long description?
- Steve
- BBCoder VI
- Posts: 863
- Joined: 05 Mar 2010, 01:10
- BBCodes: 2000
- Favourite BBCode: p**n tube
- Favourite MOD: Non of Stokers
Re: How to edit description lenght
Yes thats the one
- Steve
- BBCoder VI
- Posts: 863
- Joined: 05 Mar 2010, 01:10
- BBCodes: 2000
- Favourite BBCode: p**n tube
- Favourite MOD: Non of Stokers
Re: How to edit description lenght
if your in a real hurry search phpbb.com for topic title lengh adjsutment, includes databsae adjustments and file edits to do this for just a topic title.
if you wait , just wait a few days ,there could be more wait .........
if you wait , just wait a few days ,there could be more wait .........
Re: How to edit description lenght
i'll wait
Didn't know phpbb had such a thing
Didn't know phpbb had such a thing
Re: How to edit description lenght
Any news
- Stoker
- Site Admin
- Posts: 3558
- Joined: 12 May 2008, 23:26
- BBCodes: 239
- Favourite BBCode: Anipro
- Favourite MOD: PrettyPhoto
- Location: Denmark
- Contact:
Re: How to edit description lenght
Try this: Open styles/prosilver/template/posting_editor.html
Find:
Change number 60 and 64
Find:
Code: Select all
maxlength="<!-- IF S_NEW_MESSAGE -->60<!-- ELSE -->64<!-- ENDIF -->"
Board rules! No PM support
- Steve
- BBCoder VI
- Posts: 863
- Joined: 05 Mar 2010, 01:10
- BBCodes: 2000
- Favourite BBCode: p**n tube
- Favourite MOD: Non of Stokers
Re: How to edit description lenght
doesnt work needs to be adjusted in the database also tryed adding ,255,255 to the topic title line in functions_posting.php
search on phpbb.com a was reading a topic on there about it the other day
search on phpbb.com a was reading a topic on there about it the other day
- Stoker
- Site Admin
- Posts: 3558
- Joined: 12 May 2008, 23:26
- BBCodes: 239
- Favourite BBCode: Anipro
- Favourite MOD: PrettyPhoto
- Location: Denmark
- Contact:
Re: How to edit description lenght
DavidIQ wrote:Open functions_posting.php. Find these guys:Replace with:Code: Select all
$subject = truncate_string($subject); $data['topic_title'] = truncate_string($data['topic_title']);
That should do it now.Code: Select all
$subject = truncate_string($subject, 255); $data['topic_title'] = truncate_string($data['topic_title'], 255);
Board rules! No PM support
Re: How to edit description lenght
I'll take a look at it Stoker