Hi,
We have just checked your site.
We have managed to see the JS error related to the URL formatting when the advanced search is on.
About the conversion of the symbols in the URL - this is a browser feature to handle specific characters.
It looks like the other things are working fine.
We will take a look at the JS error and will let you know.
I do not think it is something to worry about, because it is not breaking any part of your site.
Regards, Deni !
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>