• For all who uses this nice plugin and RankMath, and GTIN dont show in google structured data, just insert this in functions.php

    //Add EAN to Rich Snippet
    add_filter( 'rank_math/snippet/rich_snippet_product_entity', function( $entity ) {
    	global $product;
    	$entity['gtin8'] = $product->get_meta( '_wpm_gtin_code' );
    	return $entity;
    });
Viewing 1 replies (of 1 total)
  • Thanks, I did and it worked

    //Add EAN to Rich Snippet
    add_filter( ‘rank_math/snippet/rich_snippet_product_entity’, function( $entity ) {
    global $product;
    $entity[‘gtin8’] = $product->get_meta( ‘_wpm_gtin_code’ );
    return $entity;
    });

Viewing 1 replies (of 1 total)
  • The topic ‘GTIN dont show in Google data/Solved/’ is closed to new replies.