1. Install the Code Snippets plugin
2. Use one of the following snippets:
Replace the <h3> tags with <p> tags
add_filter( 'site-reviews/review/build/after', function( $fields ) {
$fields['title'] = str_replace( 'h3>', 'p>', $fields['title'] );
return $fields;
});
Replace the <h3> tags with <strong> tags
add_filter( 'site-reviews/review/build/after', function( $fields ) {
$fields['title'] = str_replace( 'h3>', 'strong>', $fields['title'] );
return $fields;
});
Remove the <h3> tags completely
add_filter( 'site-reviews/review/build/after', function( $fields ) {
$fields['title'] = str_replace( ['<h3>','</h3>'], '', $fields['title'] );
return $fields;
});
Ehi there,
thank you very much for your prompt reply.
Quite clear. We are working on it.
Amazing plugin and amazing support.
Thanks.