Support Forums

Shorten the Lenght of text in featured listings...

This is a discussion on Shorten the Lenght of text in featured listings... within the Customizations forums, part of the Developer Forums category; I am using 4.2.1 Developer with the deepsea template. I was searching in the forum for a way to shorten ...


Go Back   68 Classifieds Forums > Developer Forums > Customizations

Reply
 
Thread Tools Display Modes
Old 11-12-2010, 08:29 PM   #1
Customer
 
Join Date: Sep 2006
Posts: 68
Rep Power: 19
rockabilly is on a distinguished road
Default Shorten the Lenght of text in featured listings...

I am using 4.2.1 Developer with the deepsea template.

I was searching in the forum for a way to shorten the length of the text in the featured listings.
I found a way to do this back in 2007, so I gave it a try, but this code is not up to date.
It does work, however it puts a �
after the text, and the listings do not refresh and rotate.
I replaced $output.=$loop[$x][title] ."<br />";
in the function.feature_listings_horizontal.php file, as it describes below.
Can anyone help me so it works with 4.2.1 Developer?

Thanks....



Replace:

$output.=$loop[$x][title] ."<br />";

With:

$limit = '25'; // Set to your preference
$textin = $loop[$x][title];
if(strlen($textin)>$limit){
$textin = substr($textin,0,$limit);
$textout = substr($textin,0,-(strlen(strrchr($textin,' '))) )."�";}
else{$textout = $textin;}
$output.=$textout ."<br />";


This shortens the string to whatever you specify as the limit, drops any word fragment, and ads the ellipsis (�)


original thread: http://www.68classifieds.com/forums/...-too-long.html
rockabilly is offline   Reply With Quote
Reply

Thread Tools
Display Modes


Similar Threads
Thread Thread Starter Forum Replies Last Post
Featured Listings Text metrony TemplateCodes 3 02-03-2010 07:40 AM
V4.1.x mod prop: automatically shorten url damiun Modules / Plugins / Modifications 5 08-29-2009 08:54 PM
Changing Text color of the header Featured Listings loudmouthclassifieds Templates, HTML, CSS, and Design Help 3 02-07-2009 12:28 PM


All times are GMT -4. The time now is 08:06 PM.


Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2011, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0