Hi,
Thanks for the suggestion !
We will think about its implementation soon.
For now you can do it with JavaScript. Just make sure the Quick Tabs are not loading with AJAX.
Go to the /Plugins/SevenSpikes.Nop.Plugins.NopQuickTabs/Scripts/ProductTabs.min.js and add this code in its end:
(function ($) {
$(document).ready(function () {
setTimeout(function () {
var productReviewsList = $('.product-review-list');
var productTabId = productReviewsList.closest('.ui-tabs-panel').attr('id');
var productReviewsAnchor = $('#quickTabs .ui-tabs-nav > li[aria-controls="' + productTabId + '"]');
var reviewAnchorText = productReviewsAnchor.find('.ui-tabs-anchor').text() + ' (' + productReviewsList.find('.product-review-item').length + ')';
productReviewsAnchor.find('.ui-tabs-anchor').text(reviewAnchorText);
}, 500);
});
})(jQuery);
<div class="hmslider">
@Html.Widget("home_page_top")
</div>