Why Failed in admin

Hello

Why i get failed in admin for this addon?

I have insert all files

Warning: Modification "Product star rating" failed during operation #2 in includes/templates/man.catalog/views/box_product.inc.php: Search not found in ~/includes/library/lib_vmod.inc.php (Line 210)
if you click on the red "Failed", what do you see? Which operation fails? if operation 2 fails (according to the error), that means that it cant find this line:
<div class="stock-status" style="margin: 1em 0;">
So find out if this line is present in includes/templates/*.catalog/views/box_product.inc.php
where should this line be inserted in that file 210?
No, just open the file includes/templates/man.catalog/views/box_product.inc.php and look if somewhere in this file is 
<div class="stock-status" style="margin: 1em 0;">
present. if you can't find this line, then we have to find another solution for inserting the code.
No i don't find this in the file
Can you upload the file includes/templates/man.catalog/views/box_product.inc.php here please?
look here
@blixten insert after product name or before short description. 

<h1 class="title">
        <?php echo $name; ?>
      </h1>
In your file box_product.inc.php you have this line:
<div class="buy_now" style="margin: 1em 0;">
Insert this line just above it:
<div class="stock-status" style="margin: 1em 0;">
Another option is: in file vmods/product_star_rating.xml
Change these lines:
<!-- 2nd operation -->
<operation method="before">
      <find><![CDATA[
<div class="stock-status" style="margin: 1em 0;">
      ]]></find>
to these lines:
<!-- 2nd operation -->
<operation method="before">
      <find><![CDATA[
<div class="buy_now" style="margin: 1em 0;">
      ]]></find>
@jackmaessen

How i show star look on the picture

Can they be made so that the stars are also displayed even if the customer does not press into the product
not possible yet with this script
Ok thanks
Great😀thanks
This have same problem not working

What code have you insert now so the stars show on the product page?