drastic Posted June 4 Share 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 Link to comment Share on other sites More sharing options...
Tech Support Posted June 5 Share 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 Link to comment Share on other sites More sharing options...
drastic Posted June 5 Author Share Posted June 5 so awesome! thanks! Quote Link to comment Share on other sites More sharing options...
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.