Meta Tag Analyzer
Analyze and optimize your website's meta tags, social previews & SEO
Analyze Website
Meta Tag Generator
Generate optimized meta tags for your website
Generated Meta Tags:
Sngine Meta Tag Fixer
About This Tool
This specialized tool tests your Sngine website and provides specific fix instructions for your
This specialized tool tests your Sngine website and provides specific fix instructions for your
_head.tpl file.
Sngine Meta Tag Optimization Guide
Problem: Sngine default truncates at 70 characters. Google only shows ~60.
File to Edit:
Or your active theme path
content/themes/default/templates/_head.tplOr your active theme path
❌ Default (Wrong)
<title>{$page_title|truncate:70}</title>
✅ Optimized (Correct)
<title>{$page_title|truncate:60}</title>
Problem: 300 characters is way too long. Google truncates at ~160.
File to Edit:
content/themes/default/templates/_head.tpl
❌ Default (Wrong)
<meta name="description" content="{$page_description|truncate:300}">
✅ Optimized (Correct)
<meta name="description" content="{$page_description|truncate:160}">
Problem: OG tags inherit the same long truncation values.
File to Edit:
content/themes/default/templates/_head.tpl
Fix OG:Title
❌ Wrong
<meta property="og:title" content="{$page_title|truncate:70}" />
✅ Correct
<meta property="og:title" content="{$page_title|truncate:60}" />
Fix OG:Description
❌ Wrong
<meta property="og:description" content="{$page_description|truncate:300}" />
✅ Correct
<meta property="og:description" content="{$page_description|truncate:160}" />
Add Missing OG Tags:
Sngine is missing some important OG tags. Add these after the existing OG tags:
Sngine is missing some important OG tags. Add these after the existing OG tags:
<meta property="og:type" content="website" />
<meta property="og:url" content="{$system['system_url']}/{$view}" />
Problem: Same truncation issues as OG tags.
❌ Wrong
<meta name="twitter:title" content="{$page_title|truncate:70}" />
<meta name="twitter:description" content="{$page_description|truncate:300}" />
✅ Correct
<meta name="twitter:title" content="{$page_title|truncate:60}" />
<meta name="twitter:description" content="{$page_description|truncate:160}" />
Copy this entire optimized head section:
<!-- Title -->
<title>{$page_title|truncate:60}</title>
<!-- Title -->
<!-- Meta -->
<meta name="description" content="{$page_description|truncate:160}">
<meta name="keywords" content="{$system['system_keywords']}">
<!-- Meta -->
<!-- OG-Meta -->
<meta property="og:type" content="website" />
<meta property="og:url" content="{$system['system_url']}/{$view}" />
<meta property="og:title" content="{$page_title|truncate:60}" />
<meta property="og:description" content="{$page_description|truncate:160}" />
<meta property="og:site_name" content="{__($system['system_title'])}" />
<meta property="og:image" content="{$page_image}" />
<!-- OG-Meta -->
<!-- Twitter-Meta -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="{$page_title|truncate:60}" />
<meta name="twitter:description" content="{$page_description|truncate:160}" />
<meta name="twitter:image" content="{$page_image}" />
<!-- Twitter-Meta -->
The _head.tpl location depends on your active theme:
| Theme | File Path |
|---|---|
| Default | content/themes/default/templates/_head.tpl |
| Engine | content/themes/engine/templates/_head.tpl |
| Elengine | content/themes/elengine/templates/_head.tpl |
| Custom Theme | content/themes/YOUR_THEME/templates/_head.tpl |
How to find your active theme:
Admin Panel → Settings → General → Theme
Admin Panel → Settings → General → Theme
Meta Tags Best Practices
- Keep it between 50-60 characters
- Include primary keyword near the beginning
- Make it compelling and clickable
- Each page should have a unique title
- Include your brand name (at the end)
- Avoid keyword stuffing
- Keep it between 150-160 characters
- Write compelling copy that encourages clicks
- Include a call-to-action
- Use active voice
- Include relevant keywords naturally
- Make each description unique
Required Tags:
og:title- Page titleog:description- Page descriptionog:image- Image (min 1200x630px)og:url- Canonical URLog:type- Content type (website/article)
- Recommended: 1200x630px (1.91:1 ratio)
- Minimum: 600x315px
- Format: JPG or PNG
- Size: Under 8MB
Card Types:
summary- Default card (small image)summary_large_image- Large image card (recommended)app- Mobile app cardplayer- Video/audio player
- Summary: Min 144x144px (1:1 ratio)
- Large Image: Min 300x157px (2:1 ratio)
- Max 5MB file size