Missing Schema Fields fro “Product”
-
Im looking to fix some of the missing Schema fields. Whats the best way to acheive this?
Screenshot: https://snag.gy/W43KMr.jpg
Do you have a template for “product”?
/** * Modifies the schema created by Site Reviews. * Paste this in your active theme's functions.php file. * @return array */ add_filter( 'site-reviews/schema/LocalBusiness', function( array $schema ) { $schema['address'] = [ '@type' => 'PostalAddress', 'streetAddress' => '123 Main St', 'addressLocality' => 'City', 'addressRegion' => 'State', 'postalCode' => 'Zip', ]; return $schema; });
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘Missing Schema Fields fro “Product”’ is closed to new replies.