Results 1 to 3 of 3
Threaded View
-
14th Aug 2011, 01:46 PM #2Member
It could probably be achieved with some simple html / css coding.
I dont have time to look into it properly right now though.
In the meantime, try searching for plugins with this keyword - "Truncate"
---- edit ----
Ok, I had a spare second to take a look for you.
It seems like it's a PHP function that will sort this out for you.
What your trying to do it "truncate" so, I done a search for "truncate links"... and came up with these results.
Code:http://www.google.co.uk/search?q=truncate+links&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:official&client=firefox-a
Code:http://psoug.org/snippet/Truncate-Links-Over-X-Chars-long_230.htm
Code:<?PHP FUNCTION handle_url_tag($url, $link = ''){ GLOBAL $FORUM_user; // maximum link length $MAXLEN = 50; // if too long, clip it to how many chars? $CLIPTO = 45; $full_url = STR_REPLACE(ARRAY(' ', '\'', '`', '"'), array('%20', '', '', ''), $url); if (strpos($url, 'www.') === 0) // If it starts with www, we add http:// $full_url = 'http://'.$full_url; else if (strpos($url, 'ftp.') === 0) // Else if it starts with ftp, we add ftp:// $full_url = 'ftp://'.$full_url; else if (!preg_match('#^([a-z0-9]{3,6})://#', $url, $bah)) // Else if it doesn't start with abcdef://, we add http:// $full_url = 'http://'.$full_url; // Ok, not very pretty :-) $link = ($link == '' || $link == $url) ? ((strlen($url) > $MAXLEN) ? substr($url, 0 , $CLIPTO).' … '.substr($url, -10) : $url) : stripslashes($link); return '<a href="'.$full_url.'">'.$link.'</a>'; } ?>
Anyway, I hope this helps you out at some degree :-)
UltraIMG - Free Image Hosting
Want to ask me anything to do with UltraIMG?? Send me a PM.
Chances are that if you leave a message on the forum I might not see it. :)
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
Megaupload rocks, middle finger to all haters:D
By pasa in forum Webmaster DiscussionReplies: 14Last Post: 12th Dec 2011, 07:11 AM -
Wordpress, want to make font smaller? and make width bigger
By jcberry526 in forum Technical Help Desk SupportReplies: 9Last Post: 2nd Nov 2011, 05:54 AM -
Takes 6 pull-ups with the middle finger!
By Daniel in forum General DiscussionReplies: 1Last Post: 23rd Oct 2011, 07:18 PM -
Make a site like Flippa or make wordpress like it?
By MasterDKR in forum Technical Help Desk SupportReplies: 8Last Post: 25th Aug 2011, 04:58 AM
themaCreator - create posts from...
Version 3.47 released. Open older version (or...