For instance, the link I should be directed to:
general-health/floridian-sunburn-kit-t429-15.html
Where it actually sends me:
general-health/floridian-sunburn-kit-t429.html&start=15
I looked into it, in "overall_header.html", there should be a "jumpto()" Javascript function towards the top. This is about what it should look like.
{
var page = prompt('{LA_JUMP_PAGE}:', '{ON_PAGE}');
var per_page = '{PER_PAGE}';
var base_url = '{A_BASE_URL}';
if (page !== null && !isNaN(page) && page == Math.floor(page) && page > 0)
{
if (base_url.indexOf('?') == -1)
{
document.location.href = base_url + '?start=' + ((page - 1) * per_page);
}
else
{
document.location.href = base_url.replace(/&/g, '&') + '&start=' + ((page - 1) * per_page);
}
}
}
My guess is that the HP version is missing this part.
{
document.location.href = base_url + '?start=' + ((page - 1) * per_page);
}















