problems with higher pagination numbers
When there are more than 10 pagination sites, load more reviews button disappear on 2nd pagination site.
I'm not sure why but in the review navigation script test:
if ( this.site >= this.sites )
return true when site is 2 and sites is 11 or more
I'm not sure if this is correct solution but for me works following: In the review.js file replace lines 327-329:
this.finish = function ( data )
{
if ( this.site >= this.sites ) {
with:
this.finish = function ( data )
{
var site = +(this.site);
var sites = +(this.sites);
if ( site >= sites ) {