I made a few mods to it:
http://www.acorndomains.co.uk/portal.php?page=auctions
Add the module to a standard template page and put it in the centre.
To make it show only live auctions (the published mod shows closed auctions too); edit your vba_vbay.php in the modules directory;
Code:
$showvbay = $db->query("
SELECT id, name, price, completetime, bids, completed, type, buyitnowprice
FROM " . TABLE_PREFIX . "vbay_items WHERE completed = 0
ORDER BY completetime ASC LIMIT 100");
I changed the item to completetime, so now it lists the auctions by ending soonest, not name. I changed it to show 100 listings, ascending.
Now to make it look nicer:
Code:
<tr bgcolor=#6983B2 style=font-size:11px; color: white; width=100%>
<th align=left><b>Domain Name</b></th>
<th align=center><b>Current / Minimum Bid</b></th>
<th align=center><b>Auction Ends</b></th>
<th align=center><b>Number Of Bids</b></th>
<th align=center><b>Buy It Now Price</b></th>
<th align=center><b>Auction Type</b></th>
</tr>
<tr>$showvbaybit
</tr>
<tr width=100%><td><hr>
<i><a href=$vboptions[bburl]/vbay.php?>View All Auctions</a><i/>
</td>
</tr>
I added some column titles and split the items into a list:
Code:
<tr>
<td class="alt1">
<a href=$vboptions[bburl]/vbay.php?do=item&viewitem=$showvbays[id]><b>$showvbays[name]</b></a></td>
<td align=center>?$showvbays[price]</td>
<td class="alt1" align=center>$vbay_completetime</td>
<td align=center>$showvbays[bids]</td>
<td class="alt1" align=center>?$showvbays[buyitnowprice]</td>
<td align=center>$showvbays[type]</td>
</tr>
and alternated the column colours.