No worries I fixed the problem myself.
Here is what I did
In result-count.php \\ neighborhood > woocommerce > loop > result-count.php
On line 58 replace this code:
<a href="?show_products=<?php echo $total;?>"><?php _e("All", "swiftframework"); ?></a>
With this:
<?php if (is_paged()) : ?>
<a href="../../?show_products=<?php echo $total;?>"><?php _e("All", "swiftframework"); ?></a>
<?php else: ?>
<a href="?show_products=<?php echo $total;?>"><?php _e("All", "swiftframework"); ?></a>
<?php endif; ?>
and that should fix the problem!
Best,