PhotoPost Community

PhotoPost Community (http://www.photopost.com/forum/)
-   Classifieds Bug Reports (http://www.photopost.com/forum/classifieds-bug-reports/)
-   -   Another Auciton Bug! (http://www.photopost.com/forum/classifieds-bug-reports/142721-another-auciton-bug.html)

KenDude April 22nd, 2010 06:39 PM

Another Auciton Bug!
 
Chuck,
Last week we started running an auction for one of our sponsors. I am the one who listed the item for him. I put in the reserve price at $2400, and the starting price as 0 or best offer. Here is a link to the item:

Fikse Profil Series Wheels - Classifieds

We currently have 20 bids on the item, the higest bid is $1900, short of the reserve, but there are still 8 days left to go.

HOWEVER, look at the listing, there is a "Buy It Now" price listed of $1900, the same as the current high bid.

I NEVER put anything into the input box for buy it now when I listed the item.

WHERE did this come from and how do we get rid of it??? It is causing havoc with the auction because the high bidder is thinking they can just buy this item now for $1900 when in fact they haven't even reached the reserve yet!

PLEASE HELP!!!!

Chuck S April 22nd, 2010 08:26 PM

well I dont know if I could classify that a bug. The user can not buy it because there is no buy it now button right. Thats actually safety code in the showproduct.php file to ensure that if the price on the auction is higher than the what they placed for the buy it now price that we convert the buy it to the higher price so they get that price. Something customers actually wanted

Code:

Content visible to verified customers only.
You could try changing it to something like this

Code:

Content visible to verified customers only.

KenDude April 22nd, 2010 11:48 PM

Chuck,
It is correct that there is no buy it now button, but having text that says "Buy it Now" with a price that is lower than the reserve price is certainly confusing to would-be bidders. I'm not sure I understand what you are saying about the safety code, the simple answer is that if the person who lists the item for sale does not put in a buy-it-now price, then the buy-it-now text should simply not be shown, there shouldn't be any value there at all, no display at all because the person listing the item didn't want to use that feature.

KenDude April 22nd, 2010 11:53 PM

Ok I made the change and now it displays the buy it now as "Best Offer" which I can live with if there is no way of removing the buy-it-now box/display altogether when there is no buy-it-now value entered.

Chuck S April 23rd, 2010 08:39 AM

well the auction buy price is the current price of the auction and must be shown we are now getting into really code hacking discussion as your hiding the ability to show the price of the auction.

KenDude April 23rd, 2010 08:49 AM

Chuck,
THat's not what i'm saying, the auction price is whatever the high bid is. Let's run the scenarios.

User lists item with NO buy-it-now (BIN) price. No initial listing price. Reserve of $100.

Initially the current price for the item should be "best offer"

Once the item receives bids then the current price should be whatever the high bid is, but there still should never be a BIN price shown.

I think the problem here is that you are using 1 cell (Buy it Now) in the display to show 2 different things, EITHER the current auction high bid, or the BIN price. My suggestion is that you keep those 2 things SEPARATE because they truly are separate things.

All auctions would have a "Current Price" box showing whatever the current price is, either Best Offer or the high bid at the moment. ONLY auctions with a BIN price would have a box showing the BIN price.

Otherwise using 1 box to display both items, and always with the label of "buy it now" price is just too confusing and unlike any other auction system out there.

Hope that helps...

Chuck S April 23rd, 2010 08:58 AM

You can try editing your showproduct template and change this

Code:

Content visible to verified customers only.
to this

Code:

Content visible to verified customers only.

KenDude April 23rd, 2010 09:11 AM

Chuck,
There are different places in that template with that code, are you saying change all 3, or just the one that comes before the auctionbuy prhase?

KenDude April 23rd, 2010 09:12 AM

And of course if you don't integrate these 2 changes into the product then anytime I upgrade in the future these changes will be lost and I'll have to do it all over again. :)

Chuck S April 23rd, 2010 09:15 AM

You only change the first two the ones that have to do with auctionbuy

KenDude April 23rd, 2010 09:37 AM

ok done, check it out with link above, seems to work for this auction, will have to set up one where there is a buy it now price.

Chuck S April 23rd, 2010 10:18 AM

If there is a buy it now price one will be shown

KenDude April 23rd, 2010 10:27 AM

Cool, so can we get this integrated into the codebase from this point forward, both the showproduct.php change and the template change? Please! :)

Chuck S April 23rd, 2010 10:29 AM

should not be an issue


All times are GMT -5. The time now is 06:47 AM.

Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97