The woocommerce_review_before_comment_meta hook.
Le crochet woocommerce_review_before_comment_meta.
$comment
Sortie :
// Ajouter du contenu dans les avis
add_action('woocommerce_review_before_comment_meta', 'badge_achat_verifie', 10, 1);
function badge_achat_verifie($comment) {
// Vérifier si l'auteur a acheté le produit
$verified = wc_customer_bought_product(
$comment->comment_author_email,
$comment->user_id,
$comment->comment_post_ID
);
if ($verified) {
echo '✓ Achat vérifié';
}
}
Chargement des actualités...