Page 60 of 74 FirstFirst ... 1050585960616270 ... LastLast
Results 591 to 600 of 740
  1. #591
    Join Date
    Dec 2007
    Location
    Payson, AZ
    Posts
    1,076
    Plugin Contributions
    15

    Default Re: Auction Product Type

    Quote Originally Posted by dxhye View Post
    another question
    if i want to change my email's content(outbid.win.lose)

    Which folder should i find them?
    Same as the other email templates... email folder.. with the language file in includes\languages\english\YOUR_TEMPLATE\product_auction_info.php
    Dave
    Always forward thinking... Lost my mind!

  2. #592
    Join Date
    Apr 2009
    Location
    Oxford UK
    Posts
    192
    Plugin Contributions
    0

    Default Re: Auction Product Type

    Hi there i have just installed this mod and can see how it all works apart from the template side. I have only installed this and when i create an auction product the page looks like this :-

    http://d-jb.co.uk/product_auction_in...-ps2-fat-model

    all the footer seems to be messed up as the page should look like this :-

    http://d-jb.co.uk/playstation-2/play...sale-in-oxford

  3. #593
    Join Date
    May 2006
    Location
    Virginia U.S
    Posts
    173
    Plugin Contributions
    3

    bug Re: Auction Product Type

    Theres a bug in the use countdown clock.
    If you choose "Yes, use Countdown clock" it does not show.
    If you choose "No, Do not use Countdown clock" it shows.

    Where do you find this control at in the code? I'm sure it can be switched.

    Thanks
    How can there be nothing? Nothing is something!

  4. #594
    Join Date
    May 2006
    Location
    Virginia U.S
    Posts
    173
    Plugin Contributions
    3

    Default Re: Auction Product Type

    Quote Originally Posted by davewest View Post
    in includes\modules\pages\product_auction_info\header_php.php add the lines in red in between the black code sections about line 125.
    Code:
    if ($auction_bid > 0 ) {
      if ($auction_bid < ($auction_bid_minimum_increase + $auction_current_bid)) {
        $error = true;
        $messageStack->add('place_bid', ENTRY_BID_TOO_LOW, 'error');
      }
     
    if ($auction_bid >= ($auction_bid_minimum_increase + $auction_current_bid) + 200) {
        $error = true;
        $messageStack->add('place_bid', 'To High - Try Again!', 'error');
      }
      
      if ($error == false) {
    This works by checking if the bid is 200 over the current bid plus the minimum increase.. change the 200 to something higher or lower for what you want....

    I'll have to add this to the next update...
    I'll try to work on this if you don't get around to it :)

    Thanks
    How can there be nothing? Nothing is something!

  5. #595
    Join Date
    Dec 2007
    Location
    Payson, AZ
    Posts
    1,076
    Plugin Contributions
    15

    Default Re: Auction Product Type

    Quote Originally Posted by beasleybub View Post
    Theres a bug in the use countdown clock.
    If you choose "Yes, use Countdown clock" it does not show.
    If you choose "No, Do not use Countdown clock" it shows.

    Where do you find this control at in the code? I'm sure it can be switched.

    Thanks
    Thought I fix it once... but see its still coming up...
    in includes\templates\YOUR_TEMPLATE\templates\tpl_product_auction_info_display.php
    change the zero to a one....
    Code:
    <?php if ($auction_clock == 1 ) { //run the clock ?>
    Quote Originally Posted by beasleybub View Post
    I'll try to work on this if you don't get around to it :)

    Thanks
    It's already included in the last update....
    Dave
    Always forward thinking... Lost my mind!

  6. #596
    Join Date
    May 2006
    Location
    Virginia U.S
    Posts
    173
    Plugin Contributions
    3

    Default Re: Auction Product Type

    Quote Originally Posted by davewest View Post
    It's already included in the last update....
    Strange, I don't see any method to adjust the highest bid amount in the admin. Am I missing something?

    Wouldn't the highest bid amount work similar to the lowest bid amount?

    Thanks ( By the way thanks for the great addon! )
    How can there be nothing? Nothing is something!

  7. #597
    Join Date
    Apr 2009
    Location
    Oxford UK
    Posts
    192
    Plugin Contributions
    0

    Default Re: Auction Product Type

    Don't know if this is the right place to post this but if anyone would like to help me set up this mod (layout problems) i will kindly pay for your services

  8. #598
    Join Date
    May 2006
    Location
    Virginia U.S
    Posts
    173
    Plugin Contributions
    3

    Default Re: Auction Product Type

    I'd like to announce some modifications I've made to davewest's great script.
    I've added a "maximum bid allowed" feature to keep people from placing crazy bids like a billion dollars.
    You can make this any amount you choose inside the admin panel.

    Quote Originally Posted by davewest View Post
    It's already included in the last update....
    @davewest, I'm not sure what you did to the last update. The last version that is avaliable in the downloads area of zen-cart says "Last updated Dec 20 2010" and is version 1.2a.

    I saw no provision for limiting maximum bids allowed. However, I did see in an earlier post where you suggested...

    Quote Originally Posted by davewest
    That's a new one... never thought about a max amount, but with the two key words free-fun would get it going.... this is basically the opposite of the to low bid, but without an easy admin setting.

    in includes\modules\pages\product_auction_info\header_php.php add the lines in red in between the black code sections about line 125.
    Code:
    if ($auction_bid > 0 ) {
      if ($auction_bid < ($auction_bid_minimum_increase + $auction_current_bid)) {
        $error = true;
        $messageStack->add('place_bid', ENTRY_BID_TOO_LOW, 'error');
      }
     
    if ($auction_bid >= ($auction_bid_minimum_increase + $auction_current_bid) + 200) {
        $error = true;
        $messageStack->add('place_bid', 'To High - Try Again!', 'error');
      }
      
      if ($error == false) {
    This works by checking if the bid is 200 over the current bid plus the minimum increase.. change the 200 to something higher or lower for what you want....

    The edited page if you wish to just replace it... Attachment 8740

    I'll have to add this to the next update...
    I've made modifications to the script and added a Maximum bid allowed feature to the admin based on your "minimum bid allowed" feature. I think you'll find my changes helpful and worthy of a submission to the free software add ons section of zen-cart.

    Thanks again for the great script. I can't attach it to this forum because its too big I'll have to submit it for approval.
    Last edited by beasleybub; 7 Mar 2011 at 09:57 AM.
    How can there be nothing? Nothing is something!

  9. #599
    Join Date
    Dec 2007
    Location
    Payson, AZ
    Posts
    1,076
    Plugin Contributions
    15

    Default Re: Auction Product Type

    Quote Originally Posted by beasleybub View Post
    I'd like to announce some modifications I've made to davewest's great script.
    I've added a "maximum bid allowed" feature to keep people from placing crazy bids like a billion dollars.
    You can make this any amount you choose inside the admin panel.



    @davewest, I'm not sure what you did to the last update. The last version that is avaliable in the downloads area of zen-cart says "Last updated Dec 20 2010" and is version 1.2a.

    I saw no provision for limiting maximum bids allowed. However, I did see in an earlier post where you suggested...



    I've made modifications to the script and added a Maximum bid allowed feature to the admin based on your "minimum bid allowed" feature. I think you'll find my changes helpful and worthy of a submission to the free software add ons section of zen-cart.

    Thanks again for the great script. I can't attach it to this forum because its too big I'll have to submit it for approval.
    The latest is up on my site.... its been faster to do it that way while waiting for it to go live here.... I just did a site wide max bid and not by product... post your changes here or PM me...
    Dave
    Always forward thinking... Lost my mind!

  10. #600
    Join Date
    May 2006
    Location
    Virginia U.S
    Posts
    173
    Plugin Contributions
    3

    Default Re: Auction Product Type

    davewest,

    You might want to check the file you have for download at your website. May be you have accidentally used an old version or something.

    I see no changes regarding maximum bid allowed anywhere in the running script.

    What I did was add the ability to control the maximum bid increase allowed from within the admin where you either create or edit the auction product itself.

    I've submitted the changes I've made to the auction product type to zen-cart for approval.

    Here is a couple of screen shots. Note: I have so styles defined.
    Attached Thumbnails Attached Thumbnails Click image for larger version. 

Name:	maximum bid increase from admin.jpg 
Views:	123 
Size:	19.5 KB 
ID:	8964   Click image for larger version. 

Name:	auction maximum bid increase.jpg 
Views:	121 
Size:	15.4 KB 
ID:	8965  
    How can there be nothing? Nothing is something!

 

 
Page 60 of 74 FirstFirst ... 1050585960616270 ... 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

Bookmarks

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
Zen-Cart, Internet Selling Services, Klamath Falls, OR