Pages with Duplicate `<meta name="description">` Tags
A page contains more than one <meta name="description"> tag, causing ambiguity for search engines.
By Seoxpert Editorial · Published
Why it matters
Multiple meta description tags confuse search engines, leading to unpredictable snippet selection in search results. This often results from CMS or template conflicts, and can dilute your intended messaging or branding in search listings.
Impact
Search engines may ignore your intended description or generate their own, reducing control over how your page appears in search results.
How it's detected
An automated crawler parses the HTML and flags pages containing more than one <meta name="description"> tag.
Common causes
- Multiple templates each adding a meta description tag
- A CMS plugin and the theme both outputting a description
- Manual addition of a meta tag without removing the default
- JavaScript dynamically injecting a second meta description
- Incorrect use of partials or layout overrides
How to fix it
Code examples
Problem: Two meta description tags in the HTML
<head>
<meta name="description" content="Default site description.">
<meta name="description" content="Custom page description.">
</head>Fix: Only one meta description tag remains
<head>
<meta name="description" content="Custom page description.">
</head>FAQ
How do I find duplicate meta description tags on my page?
View your page source and search for <meta name="description">. If more than one exists, you have duplicates.
Will Google penalize my site for duplicate meta descriptions?
No, but Google may ignore your intended description and display a snippet it generates from your content.
Can I keep multiple meta descriptions for different purposes?
No, only one <meta name="description"> tag should be present per page for SEO clarity.
How do I fix this if my CMS or theme adds a default description?
Adjust your theme or plugin settings to ensure only one meta description is output per page.
Found this issue on your site?
Run a scan to see if Pages with Duplicate `<meta name="description">` Tags affects your pages.
Scan my website →