Skip to content
otter-page-builder-blocks-extensions

Why start from scratch? Otter Pro gives you 40+ ready patterns, premium blocks, and priority support.

See Pro Plans →

How to Modify Review Block Schema?

The Product Review block, by default, displays the product name, rating, pros, and cons, price, as well as some key characteristics. These appear in the structured data of the post where the block is inserted.

However, if you need to display other markups in the structured data of the post, you can do so by following these steps:

1 First, navigate to Settings > Otter and enable the Rich Schema option.

2 Copy the following  code snippet:

add_filter( 'otter_blocks_review_block_schema', function( $schema, $attributes ) {
	$schema['brand'] = array(
		'@type' => 'Brand',
		'name'  => 'CheeseMaster'

	);
	return $schema;
}, 10, 2 );

📝 Note: For more information about the Review Schema, check this documentation.

3Replace the "brand" word inside the schema, the type, and the name to contain the desired markup.

4Paste the code into the functions.php file of the Otter Blocks plugin.

5 Once you have done this, the new markup will appear in the schema.org: