WooCommerce is the leading e-commerce plugin for WordPress. This guide covers specific SEO considerations for WooCommerce stores beyond standard WordPress optimization.
Settings → Permalinks → Product permalinks. Choose "Shop base" or custom structure for clean URLs.
Use short descriptions for key selling points. These often appear in search results and category pages.
Add descriptive filenames and alt text to all product images. Include product name and key features.
WooCommerce includes basic Product schema. Enhance it with:
{
"@context": "https://schema.org",
"@type": "Product",
"name": "Product Name",
"image": "https://example.com/image.jpg",
"description": "Product description...",
"offers": {
"@type": "Offer",
"price": "29.99",
"priceCurrency": "USD",
"availability": "InStock"
},
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "4.5",
"reviewCount": "89"
}
}
| Issue | Solution |
|---|---|
| Thin product descriptions | Write unique, detailed descriptions (200+ words) for each product |
| Duplicate content from variations | Use canonical tags pointing to main product, or combine variations |
| Paginated category pages | Implement rel="next/prev" or use a view-all option |
| Out-of-stock products indexed | Redirect or noindex permanently discontinued products |
| Filter URLs creating duplicates | Use canonical tags or noindex filtered pages |
| Slow product pages | Optimize images, use caching, minimize plugins |