-- HikaShop version -- : 4
-- Joomla version -- : 3.8.13
Hi,
If download limit is set to -1 in backend, the user it will see this in download section: -4 downloads left (-4 is what i see now, if i downloa one more it will be -5, -6 and so on)
Instead of this: unlimited
To fix this, if look in to user / downloads.php view, on line 189, there is this line of code:
if($limit == -1 && $limitNotReached && $periodNotReached) {
Which should be changed to this
if($limit <= -1 && $limitNotReached && $periodNotReached) {