3.2.x Snippets ⇒ Topic title bar limit the number of characters
-
- Users
- Magic user status: Offline
- Posts: 2
- Joined: Aug 14th, '17, 06:44
Topic title bar limit the number of characters
Sorry, English is not my native language
I do not know what to do, please help me, thanks
You do not have the required permissions to view the files attached to this post.
-
- Admin
- Magic user status: Offline
- Posts: 4690
- Joined: Apr 6th, '14, 14:12
Re: Topic title bar limit the number of characters
Open styles/prosilver/template/posting_editor.html
find
phpbb is default to 120 chars for new messages and 124 for replies you can change it to what ever number you want but remember this will be a core edit also there must be 4 numbers higher on replies.
find
Code: Select all
<input type="text" name="subject" id="subject" size="45" maxlength="<!-- IF S_NEW_MESSAGE -->120<!-- ELSE -->124<!-- ENDIF -->" tabindex="2" value="{SUBJECT}{DRAFT_SUBJECT}" class="inputbox autowidth" />
Use this to install an ext on your board no more ftp or path making.
Path too install this ext is ext/boardtools/upload
Download is here Make it easy for us to solve your issues
Path too install this ext is ext/boardtools/upload
Download is here Make it easy for us to solve your issues
-
- Users
- Magic user status: Offline
- Posts: 2
- Joined: Aug 14th, '17, 06:44
Re: Topic title bar limit the number of characters
thank you very muchmartin wrote: ↑Aug 19th, '17, 18:33 Open styles/prosilver/template/posting_editor.html
findphpbb is default to 120 chars for new messages and 124 for replies you can change it to what ever number you want but remember this will be a core edit also there must be 4 numbers higher on replies.Code: Select all
<input type="text" name="subject" id="subject" size="45" maxlength="<!-- IF S_NEW_MESSAGE -->120<!-- ELSE -->124<!-- ENDIF -->" tabindex="2" value="{SUBJECT}{DRAFT_SUBJECT}" class="inputbox autowidth" />
-
- Admin
- Magic user status: Offline
- Posts: 4690
- Joined: Apr 6th, '14, 14:12
Re: Topic title bar limit the number of characters
Np moved topic to 3.2 snippets as others may use it.