X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Changing design (https://forum.x-cart.com/forumdisplay.php?f=51)
-   -   Review Stars on Product Page (https://forum.x-cart.com/showthread.php?t=65503)

Johnwiggity 11-28-2012 08:31 AM

Review Stars on Product Page
 
Is it possible to only show the review stars at the top on each product details page only if there are reviews that have been submitted?

Doesn't really look that great if there are no reviews submitted?

Thanks,

John

totaltec 11-28-2012 11:39 AM

Re: Review Stars on Product Page
 
Try this in customer/main/product_details.tpl:
Code:

  {if $active_modules.Advanced_Customer_Reviews and $product.general_rating.rating gt 0}
    {include file="modules/Advanced_Customer_Reviews/acr_product_details.tpl" break_line="Y"}
  {else}
    {include file="main/visiblebox_link.tpl" mark="1" title="Be the first to Rate This Product"}
      <div style="display: none;" id="box1">
        {include file="modules/Advanced_Customer_Reviews/acr_product_details.tpl" break_line="Y"}
      </div>
  {/if}

Or you could dive deeper into modules/Advanced_Customer_Reviews/acr_product_details.tpl and use the same logic {if $product.general_rating.rating gt 0} to hide just the stars and be left with just the link or nothing.

I think the point of displaying the stars is to draw attention and inspire reviews, but this should have the same effect.

Johnwiggity 11-28-2012 12:19 PM

Re: Review Stars on Product Page
 
Thanks a lot! You've been a great help.

John


All times are GMT -8. The time now is 08:44 AM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.