drastic Posted June 4 Posted June 4 My current theme, an awesome job by Adult-HTML, has the full content in the meta description. Is there a setting in KVS that limits the meta description to X amount of characters? Or is that something we put in the theme itself? Any help would be great. thx Quote
Tech Support Posted June 5 Posted June 5 The meta description is rendered like this in Website UI -> Page components -> include_header_general.tpl: <meta name="description" content="{{$page_description|mb_ucfirst|default:$lang.html.default_description}}"/> You can use Smarty truncate modifier to limit its output to specific length: <meta name="description" content="{{$page_description|mb_ucfirst|default:$lang.html.default_description|truncate:1000:"...":true}}"/> 1 Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.