Hi,
could you fix it so that 1 page was without tails like: ?limitstart_category=0&limit=12
No. This is normal. It's not a mistake and it doesn't have any negative impact.
When I scan another such url is visible
I see what the problem is here. It's similar to the other issue but with a different scale.
Change the code :
return $current_url.$sep.'limitstart'.$this->hikaSuffix.'='.$start.'&limit='.$this->limit;
to:
$return_url = $current_url.$sep.'limitstart'.$this->hikaSuffix.'='.$start;
if(strpos($return_url, '&limit='.$this->limit)) {
return $return_url;
}
return $return_url.'&limit='.$this->limit;
in administrator/components/com_hikashop/helpers/pagination.php and it will avoid these.
We'll add the change on our end too.