There is an error in theme-widgets.php
Noticed that the POPULAR STORES widgets isn't closing <a> tags correctly which means the title of the next widget is also treated as a link. To fix the problem...
FIND: echo '<li><a class="tax-link" href="'.$link.'">' . $tax_val->name. '</li>';
REPLACE WITH: echo '<li><a class="tax-link" href="'.$link.'">' . $tax_val->name. '</a></li>';