X-cart v4.4.0 shows Customer Feedback at header

How to show Customer Feedback at header of detailed product page?
1. Go to skin/common_files/modules/Customer_Reviews/, creat a filed called vote_reviews_header.tpl, and open it.
2. Add the following code in vote_reviews_header.tpl:

{*
$Id: vote_reviews.tpl,v 1.2 2010/07/02 06:58:21 igoryan Exp $
vim: set ts=2 sw=2 sts=2 et:
*}
      {if $reviews}
        <ul>
          {foreach from=$reviews item=r}
            <li>
              {$r.message}
            </li>
          {/foreach}
        </ul>
      {/if}

3. Go to skin/2-columns/customer/, and open content.tpl, change:

<div id="center">
  <div id="center-main">
    {include file="customer/evaluation.tpl"}
<!-- central space -->

to:

<div id="center">
  <div id="center-main">
    {include file="modules/Customer_Reviews/vote_reviews_header.tpl"}
    {include file="customer/evaluation.tpl"}
<!-- central space -->