Ce que vous saurez faire
- SEO produit WooCommerce efficace
- Optimiser titres, descriptions, images
- Schema Product/Review
- Monitoring et suivi
Étape 1 — Recherche mots-clés produit
Google Keyword Planner (gratuit avec Google Ads)
Ubersuggest: 3 recherches/jour gratuit
Pour chaque produit, trouver:
- Mot-clé principal (volume 100+/mois)
- 5-8 longue traîne
- Variantes (couleur, taille, marque)
Étape 2 — Title SEO optimisé
Format: Mot-clé principal | Bénéfice | Marque
50-60 caractères
❌ "Produit"
✅ "T-shirt coton bio Dakar - Col rond homme | ITSC"
// Avec Yoast dans WooCommerce:
// Édit produit > section Yoast > Title SEO
// Manuel via template:
add_filter('wp_title', function($title){
if (is_product()) {
global $product;
return $product->get_name() . ' - ' . $product->get_attribute('marque')
. ' | ' . get_bloginfo('name');
}
return $title;
});
Étape 3 — Meta description
140-160 caractères
Inclure: mot-clé + bénéfice + CTA
"T-shirt coton bio 100% Sénégal, coupe homme,
3 coloris. Livraison Dakar 24h. Commandez maintenant
à partir de 8 500 FCFA."
Étape 4 — URL propre
Permaliens: Settings > Permalinks > Custom Structure
/%category%/%postname%/
❌ example.sn/?product=42
✅ example.sn/mode-homme/tshirt-coton-bio-dakar
Étape 5 — Description longue
400-700 mots. Structure:
- H2 "Description détaillée"
- Matériaux, dimensions, poids
- Bénéfices
- H2 "Comment utiliser" (si applicable)
- H2 "Entretien"
- H2 "Livraison et retours"
- FAQ (3-5 questions)
Mot-clé principal 3-5 fois naturellement
Étape 6 — Images optimisées
Format: WebP (ShortPixel auto conversion)
Dimensions: 1000×1000 min carré e-commerce
Nommage: tshirt-coton-bio-dakar-noir.jpg
Alt text: "T-shirt coton bio Dakar couleur noir, col rond homme"
Galerie: 5+ photos angles différents + lifestyle
// Auto alt text sur upload
add_filter('wp_handle_upload_prefilter', function($file){
// Log + enrichir meta
return $file;
});
Étape 7 — Schema Product
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Product",
"name": "T-shirt coton bio Dakar",
"image": "https://example.sn/tshirt.webp",
"description": "T-shirt homme 100% coton bio",
"brand": { "@type": "Brand", "name": "ITSC" },
"sku": "TSH-BIO-001",
"offers": {
"@type": "Offer",
"priceCurrency": "XOF",
"price": "8500",
"availability": "https://schema.org/InStock",
"itemCondition": "https://schema.org/NewCondition"
},
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "4.7",
"reviewCount": "42"
}
}
</script>
Étape 8 — Avis clients (Reviews)
Plugins:
- Judge.me (gratuit)
- Loox (avec photos, 10 USD/mo)
- WooCommerce Product Reviews (inclus)
Déclencheurs automatiques:
- Email 7j après livraison "Notez votre achat"
- Code réduction 10% contre avis vérifié
Étape 9 — Maillage interne
Chaque fiche produit doit avoir:
- Catégorie parent (breadcrumb)
- 3-4 "Produits similaires"
- 2-3 "Vous aimerez aussi"
- Lien depuis articles blog pertinents
Plugin: "YITH WooCommerce Related Products"
Étape 10 — Sitemap produits
Yoast: /sitemap_index.xml > /product-sitemap.xml
Soumettre dans GSC
Exclure:
- Produits en rupture définitive
- Variations redondantes (une URL par produit principal)
Étape 11 — Performance
WC ralentit sans optimisation:
- WP Rocket + Redis Object Cache
- Lazy load images galerie
- Désactiver scripts WC sur pages non-shop
- CDN pour images produit
Étape 12 — Monitoring GA4 e-commerce
// Événements essentiels
gtag('event', 'view_item', {
currency: 'XOF',
value: 8500,
items: [{
item_id: 'TSH-BIO-001',
item_name: 'T-shirt coton bio Dakar',
item_category: 'Mode Homme',
price: 8500
}]
});
gtag('event', 'add_to_cart', {...});
gtag('event', 'begin_checkout', {...});
gtag('event', 'purchase', {...});
Besoin d'un site web ?
Confiez-nous la Création de Votre Site Web
Site vitrine, e-commerce ou application web — nous transformons votre vision en réalité digitale. Accompagnement personnalisé de A à Z.
À partir de 250.000 FCFA
Parlons de Votre Projet
Publicité