Free Adult Tube-Video Script Forum

Full Version: Any way to shorten the titles of the videos
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there any way to shorten the titles of the videos?
Some titles are very long and make the site look bad, it would be nice to shorten the titles.

From already thank you very much. Cool
Hi bblatino,
Just change in include/function.php next:

Find

'.urldecode($row['title']).'

Replace with:

'.substr(urldecode($row['title']),0,30).'...


Hope it will help to you Smile

Regards
Svetoslav
there is two .urldecode($row['title']).

you need to change both.

and to see the effect you need to clean caches
(22-05-2012 11:00 AM)Role-Model Wrote: [ -> ]Hi bblatino,
Just change in include/function.php next:

Find

'.urldecode($row['title']).'

Replace with:

'.substr(urldecode($row['title']),0,30).'...


Hope it will help to you Smile

Regards
Svetoslav

Yea! substr i remember that! jaja thanks man! you open my mind! Big Grin

(22-05-2012 12:39 PM)admin Wrote: [ -> ]there is two .urldecode($row['title']).

you need to change both.

and to see the effect you need to clean caches

yes admin thank`s! you rock!
Reference URL's