Welcome,
Guest
.
Please
login
or
register
.
Did you miss your
activation email
?
News:
EDC:
Download extensions for Elxis CMS
.
Home
Help
Login
Register
Elxis CMS Forum
»
Support
»
General
(Moderators:
Ivan Trebješanin
,
Farhad Sakhaei
) »
article title ellipses
« previous
next »
Print
Pages: [
1
]
Author
Topic: article title ellipses (Read 2582 times)
xmanhattan
Hero Member
Posts: 1235
If I'm still breathing, I'm doing something!
article title ellipses
«
on:
April 11, 2020, 12:05:25 »
Hello all,
How can I extend the number of characters that are displayed under articles titles listing which now shows ellipses ...?
Logged
Bournias.net
webgift
Elxis Team
Hero Member
Posts: 4193
Re: article title ellipses
«
Reply #1 on:
April 16, 2020, 11:40:17 »
Hello @xmanhattan,
Open the file: components/com_content/views/aarticle.html.php
Line: 186
Change the line:
if (
eUTF
::
strlen
(
$title
) >
30
) {
$title
=
eUTF
::
substr
(
$title
,
0
,
27
).
'...'
; }
to the one you wish like (increased by 20 characters):
if (
eUTF
::
strlen
(
$title
) >
50
) {
$title
=
eUTF
::
substr
(
$title
,
0
,
47
).
'...'
; }
Logged
Elxis Team •
Custom web design [EN]
-
[EL]
•
.GR Registrar
xmanhattan
Hero Member
Posts: 1235
If I'm still breathing, I'm doing something!
Re: article title ellipses
«
Reply #2 on:
April 16, 2020, 13:01:39 »
Perfect!!!
Thank you webgift and have a Happy Easter!
Logged
Bournias.net
webgift
Elxis Team
Hero Member
Posts: 4193
Re: article title ellipses
«
Reply #3 on:
April 23, 2020, 18:26:03 »
Happy Easter @xmanhattan!
Logged
Elxis Team •
Custom web design [EN]
-
[EL]
•
.GR Registrar
Print
Pages: [
1
]
« previous
next »
Elxis CMS Forum
»
Support
»
General
(Moderators:
Ivan Trebješanin
,
Farhad Sakhaei
) »
article title ellipses