Page 1 of 2 12 LastLast
Results 1 to 10 of 740

Hybrid View

  1. #1
    Join Date
    Mar 2007
    Posts
    153
    Plugin Contributions
    0

    Default Re: Auction Product Type

    here is what I am up against,
    if the bidder doesnt follow through with the auction and pay for it, I dont seem to have any records to point me to who it is, and I assumed that the bidder ID was the customer ID but it seems not so, I even bid on an item took the bidder ID (me) and compared it to customer ID's, and it wasn't me
    I have been searching files and did find one I thought would do the trick, (tpl_product_auction_info_display.php)
    it had been modified from the original, I replaced the absent code but still showing just the Bidder ID, maybe there is more than 1 file that would need to be changed, anyway we have a forum bridged with zen and was looking into using the forum nick as the identifier
    either that or the owner should get an email with the winning bidders info, I hadn't received any.
    I did get out bid notices from when I had bid...
    original code
    <td class="main"><?php echo AUCTION_WINNER . '&nbsp;' . $last_bid->fields['customers_firstname']; ?>&nbsp;<?php echo $last_bid->fields['customers_lastname']; ?></td>
    </tr>
    changed code
    <td class="main"><?php echo AUCTION_WINNER . '&nbsp;&nbsp;' . TEXT_AUCTION_BIDDER_ID . ':&nbsp;' . $last_bid->fields['customers_id']; ?></td>
    </tr>

  2. #2
    Join Date
    Jul 2004
    Location
    stroud, gloucestershire
    Posts
    205
    Plugin Contributions
    1

    Default Re: Auction Product Type

    Hi all,

    I have just downloaded this and installed it. Everything seems to be working great and will do exactly what im after except that ive come across 1 small problem.

    I set a product up with a £50 reserve price, i went in and placed a bid as a customer would for £20, bid accepted. However it still says that the reserve has not been met, but i am not able to enter another bid? Why is this?

    Any ideas?

    Many thanks

    Paul
    Even novices can be professionals!

    Funky Fancy Dress

  3. #3
    Join Date
    Jul 2004
    Location
    stroud, gloucestershire
    Posts
    205
    Plugin Contributions
    1

    Default Re: Auction Product Type

    Fixed!

    I commented out this line from the tpl_product_auction_info_display.php (line 167)

    <?php //if ($customer_high_bidder != $_SESSION['customer_id']) { ?>


    This now means that the bid entry box will always be visible allowing current customer to raise their bids if necessary without having wait untl they are outbid.

    Looks like a great mod! I think it needs some additional extras but nothing i cant handle.

    Thanks for this mod! let the fun begin!!!

    Paul
    Even novices can be professionals!

    Funky Fancy Dress

  4. #4
    Join Date
    Mar 2007
    Posts
    153
    Plugin Contributions
    0

    Default Re: Auction Product Type

    Welcome Paul to our little world of auction, this mod was all but dead until bramnick revived it and gave it new life.
    Nice little hack will ad it to my inventory
    Yes it still needs things but we wont know till we experience troubles or inconveniences , like admin need more control, but it will come the more we get involved...

    Quote Originally Posted by Wilkesy View Post
    Fixed!

    I commented out this line from the tpl_product_auction_info_display.php (line 167)

    <?php //if ($customer_high_bidder != $_SESSION['customer_id']) { ?>


    This now means that the bid entry box will always be visible allowing current customer to raise their bids if necessary without having wait untl they are outbid.

    Looks like a great mod! I think it needs some additional extras but nothing i cant handle.

    Thanks for this mod! let the fun begin!!!

    Paul

  5. #5
    Join Date
    Jul 2004
    Location
    stroud, gloucestershire
    Posts
    205
    Plugin Contributions
    1

    Default Re: Auction Product Type

    Thank you AndyII. I only came across this mod while i was having a look around the download area, but now ive tried t i must say that i am impressed. Thanks for everyone who has contributed to this!

    This afternoon i have been working on a small modification to the 'My Account' area so that people can see the items they have bidded on, however i have now run into a small trouble during testing. I have setup a product and 2 accounts, bidded against each other and received the outbid emails. However the auction has just finished and although i wont the auction, both my accounts received the same email saying thati was not successful in the bidding. On the website it shows the 'Congratulations......' lins and 'Pay now' button.

    Any idea why i would have received the wrong email to the winning account?

    Many thanks

    Paul
    Even novices can be professionals!

    Funky Fancy Dress

  6. #6
    Join Date
    Jul 2004
    Location
    stroud, gloucestershire
    Posts
    205
    Plugin Contributions
    1

    Default Re: Auction Product Type

    Hi guys,

    Just thought id share my thoughts about this mod too. I think the basics are there however now that ive had a good play around ive come up with a list of a few things that would be great to have.

    Setup changes:

    In configuration > stock set 'Show Shopping Cart - Delete Checkboxes or Delete Button' = 2 This removes the 'delete buton so customers cant remove the item they have won from the car


    Modifications:

    Ability to stop customers from clicking the 'Pay now' button more than once. This should be pretty easy to do as there is a status that appear via zencart normally saying that the cart already contains the item.

    Display in 'My Account' for winning items.

    Notification emails when auction is gtting close to the end. Can this be part of the cron job?
    Last edited by Wilkesy; 10 Sep 2008 at 08:38 PM. Reason: Hit return tooo early! lol
    Even novices can be professionals!

    Funky Fancy Dress

  7. #7
    Join Date
    Mar 2007
    Posts
    153
    Plugin Contributions
    0

    Default Re: Auction Product Type

    I got adventurous and installed on a live site
    this mod is very nice but how do we find and solve the troubles if it is not in use in real life?
    that email problem may be a new bug
    some of us rely on members like you and bramnick to solve these things, Like I said, if bramnick hadn't ventured in when he did, I am not sure where this mod would be now, my guess would be dead in the water

  8. #8
    Join Date
    Mar 2008
    Posts
    63
    Plugin Contributions
    1

    Default Re: Auction Product Type

    Quote Originally Posted by Wilkesy View Post
    Hi all,

    I have just downloaded this and installed it. Everything seems to be working great and will do exactly what im after except that ive come across 1 small problem.

    I set a product up with a £50 reserve price, i went in and placed a bid as a customer would for £20, bid accepted. However it still says that the reserve has not been met, but i am not able to enter another bid? Why is this?

    Any ideas?

    Many thanks

    Paul
    The intention was that you could not bid against yourself UNLESS the reserve price wasnt met. I thought I had that working.

    Since it appears that others are now playing with the code (yeah) I will upload the last load I have. There are only little things in there, but for completeness...

    Arnold

  9. #9
    Join Date
    Mar 2008
    Posts
    63
    Plugin Contributions
    1

    Default Re: Auction Product Type

    Quote Originally Posted by AndyII View Post
    here is what I am up against,
    if the bidder doesnt follow through with the auction and pay for it, I dont seem to have any records to point me to who it is, and I assumed that the bidder ID was the customer ID but it seems not so, I even bid on an item took the bidder ID (me) and compared it to customer ID's, and it wasn't me
    I have been searching files and did find one I thought would do the trick, (tpl_product_auction_info_display.php)
    it had been modified from the original, I replaced the absent code but still showing just the Bidder ID, maybe there is more than 1 file that would need to be changed, anyway we have a forum bridged with zen and was looking into using the forum nick as the identifier
    either that or the owner should get an email with the winning bidders info, I hadn't received any.
    I did get out bid notices from when I had bid...
    original code


    changed code
    BIDDER_ID <> CUSTOMER_ID the reason is that a customer may make serveral bids on the same item... see zen_products_auctions table

  10. #10
    Join Date
    Jul 2004
    Location
    stroud, gloucestershire
    Posts
    205
    Plugin Contributions
    1

    Default Re: Auction Product Type

    hmmmmm still having alot of trouble with the emails! i am not getting any emails at all when the auctions finish. I have tried it with both the cron job and the now page refresh method. Are there any other settings to try?

    I have looked in the database and according to the table the email has been sent as the flags are marked with a 'Y' so the script has run but no emails. hmmmmm confused.

    Cheers
    Even novices can be professionals!

    Funky Fancy Dress

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Auction Product type
    By Andreas1211 in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 14 Aug 2014, 02:13 PM
  2. Auction Product Type: Can't add a product of the type.
    By sw0rdz in forum Setting Up Categories, Products, Attributes
    Replies: 1
    Last Post: 5 Sep 2009, 02:11 AM
  3. Auction Product Type
    By chinthana in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 18 Jun 2009, 10:33 AM
  4. Auction Mod. Product Type
    By wilt in forum All Other Contributions/Addons
    Replies: 5
    Last Post: 15 Feb 2007, 07:35 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg