Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

[Решено] [Решено] Количество отображаемых отзывов на странице


Nannco
 Share

Recommended Posts

Подскажите как можно отобразить большее количество отзывов на странице товара?


Сейчас всего 6 отзывов, а во вкладке "отзывов" отображаются только 5 и переключившись на вторую страницу 1-отзыв, хотелось бы хотя бы 10 последних отзывов на одной странице. 

 

Возможно увеличить? 

Edited by Nannco
Link to comment
Share on other sites


Если я правильно понял то вот этот файл отвечает за отзывы, здесь надо что-то поменять?

 

/template/product/review.tpl

 

<?php if ($reviews) { ?>
<?php foreach ($reviews as $review) { ?>
<table class="table table-striped table-bordered">
  <tr>
    <td style="width: 50%;"><strong><?php echo $review['author']; ?></strong></td>
    <td class="text-right"><?php echo $review['date_added']; ?></td>
  </tr>
  <tr>
    <td colspan="2"><p><?php echo $review['text']; ?></p>
      <?php for ($i = 1; $i <= 5; $i++) { ?>
      <?php if ($review['rating'] < $i) { ?>
      <span class="fa fa-stack"><i class="fa fa-star-o fa-stack-2x"></i></span>
      <?php } else { ?>
      <span class="fa fa-stack"><i class="fa fa-star fa-stack-2x"></i><i class="fa fa-star-o fa-stack-2x"></i></span>
      <?php } ?>
      <?php } ?></td>
  </tr>
</table>
<?php } ?>
<div class="text-right"><?php echo $pagination; ?></div>
<?php } else { ?>
<p><?php echo $text_no_reviews; ?></p>
<?php } ?>

 

Link to comment
Share on other sites


в файле
catalog\controller\product\product.php

есть метод review
в нем поменять цифру 5 на 10 в нескольких местах

Link to comment
Share on other sites


2 минуты назад, thentru сказал:

в файле
catalog\controller\product\product.php

есть метод review
в нем поменять цифру 5 на 10 в нескольких местах

 

Большое спасибо нашёл 

$pagination->limit = 15;

Поставил 15 и оно помогло :)

Link to comment
Share on other sites


  • 1 year later...

Путь на сервере: /catalog/controller/product/product.php

Нужно поменять в 3-ех местах, в 590 строке два раза. и в 604 строке 1 раз.

 

По умолчанию стоит вывод 5 коментов, я изменил на 15.

image.thumb.png.272b153200df1fcee1afb13cb302e3ce.png

Link to comment
Share on other sites


Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...

Important Information

On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice.