Quantcast
Channel: phpBB.com
Viewing all articles
Browse latest Browse all 2802

phpBB Custom Coding • Re: Topic title limit

$
0
0
These two Linux commands/workaround helped to input more than 60 characters into the post title:

Code:

cd styles/style-name-here && sed -i "s|60<\!-- ELSE -->64|90<\!-- ELSE -->94|g" template/posting_body.htmlcd includes/ && sed -i "s|$max_length = 60|$max_length = 90|g" functions_content.php
It is about replacing

Code:

60<!-- ELSE -->64
by

Code:

90<!-- ELSE -->94
in posting_body.html and

Code:

$max_length = 60
by

Code:

$max_length = 90
in functions_content.php

Statistics: Posted by postcd — Sun Apr 27, 2025 7:42 am



Viewing all articles
Browse latest Browse all 2802

Trending Articles