PDA

View Full Version : Limit meta description tag


LOGECT
11-27-2013, 06:26 PM
Hello

I'm trying to limit the meta description in 150 characters, is there anybody who can help?
I've already checked this thread (http://www.vbulletin.com/forum/forum/vbulletin-4/vbulletin-4-suggestions/330056-limit-the-number-of-characters-in-meta-description), but its not working.

Any help would be great, thank you.

kh99
11-27-2013, 06:59 PM
I can't see offhand why that wouldn't work (it would only work on the showthread.php page of course). But code in showthread.php is already limiting it to 500 chars, so another thing you could do is edit the file and change 500 to 150.

LOGECT
11-27-2013, 07:48 PM
Thank you so much for your help, i changed it to 150 but the meta description is still too long!

--------------- Added 1385636941 at 1385636941 ---------------

Just ignore my last post, the issue is now fixed, thank you :)

Bisha
01-15-2014, 11:44 PM
Use this on as plugin, at hook location showthread post start ;)

$short = $thread['meta_description'];
$thread['meta_description'] = substr($short, 0, 160);

RichieBoy67
01-16-2014, 12:12 AM
Honestly I do not think this 150 limit is so important any longer especially with the hummingbird updates. The thread linked was from 2009.

zorcocuq
09-19-2015, 10:57 AM
Use this on as plugin, at hook location showthread post start ;)

$short = $thread['meta_description'];
$thread['meta_description'] = substr($short, 0, 160);


Thanks.
This is where we should write the code?