To display the current Post's hReview use
[flexible_hreview]
To display a different Post's hReview use
[flexible_hreview id="123"]
where 123 is ID of the Post.
In single.php:
<?php if(function_exists('flexible_hreview_html')) { echo flexible_hreview_html(); }; ?>
In other files:
<?php if(function_exists('flexible_hreview_html')) { echo flexible_hreview_html(123); }; ?>
where 123 is ID of the Post.
Use CSS to visually hide elements of the hReview. For example, to hide the version number:
.hreview .version { position: absolute; left: -999em; }