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.
If not 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.
If not 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?
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


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 -->"
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

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);