Hello JLex Review team,
I noticed a regression in the Espace template on the reviews page after updating to the latest version.

Issue description:
In previous versions, the Espace template displayed the total number of reviews (e.g. “22 total”) on the reviews page.

In the latest version, the Espace template now only shows:

All reviews
3 out of 5

While the Default template still correctly shows the full summary, for example:

Reviews
3 out of 5
22 total


If I switch from Espace to Default, the total review count appears again, so the data itself is still available.


I compared the old and new versions of the following file:
components/com_jlexreview/templates/espace/reviews/default_summary.php
New version (current)
<div id="jreview-header">
<div class="_left ct">
<?php echo jtext::_(
$this->config->get('page_title', 0)
? $this->config->get('page_title_value', '')
: 'JR_ALL_REVIEWS'
); ?>
</div>


Older version with total number of reviews (working)
<div id="jreview-header">
<div class="_left">
<h3>
<?php
if ($this->config->get("page_title", 0)) {
$caption = $this->config->get("page_title_value", "");
} else {
$caption = jtext::_('JR_CUSTOMER_REVIEW');
if ($this->item->count_rating > 1) {
$caption = jtext::plural('JR_CUSTOMER_REVIEW_COUNT', $this->item->count_rating);
} elseif ($this->item->count_rating == 1) {
$caption = jtext::_('JR_CUSTOMER_REVIEW_COUNT_ONE');
}
}
echo $caption;
?>
</h3>
</div>
Expected behavior
The Espace template should behave the same as before, or match the updated Default template, and display the total number of reviews alongside the rating summary.


Could you please:
Restore the total review count in the Espace template, or
Align default_summary.php in the Espace template with the current Default template logic?



Thank you for your time and support.