I found a bug here:
/httpdocs/templates/gk_shop_and_buy/html/com_virtuemart/_user/edit_orderlist.php
- Code: Select all
<td align="left">
<a href="<?php echo $editlink; ?> rel="nofollow""><?php echo $row->order_number; ?></a>
</td>
<td align="left">
It shoud be:
- Code: Select all
<td align="left">
<a href="<?php echo $editlink; ?>" rel="nofollow"><?php echo $row->order_number; ?></a>
</td>
order links were broken:
