Page 36 of 74 FirstFirst ... 26343536373846 ... LastLast
Results 351 to 360 of 740
  1. #351
    Join Date
    Sep 2007
    Posts
    128
    Plugin Contributions
    0

    Default Re: Auction Product Type

    Dave,

    I installed the double clicking thing anyway because we've had some double orders lately. Usually the orders go through so fast, it's not an issue.

    If you can let me know how to mod the mod for the auction buttons, I would really apprectiate it.

    Janelle

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

    Default Re: Auction Product Type

    Quote Originally Posted by janellez View Post
    If you can let me know how to mod the mod for the auction buttons, I would really apprectiate it.
    OK... using 99a two files need to be modified.
    includes\modules\pages\product_auction_info\jscript_main.php

    Just above this line //--></script> added the following.. you may have to adjust the image pathway to match your site.

    Code:
    function SubmitOrderButton(){
            document.getElementById("submitmain").style.display = "none";    
        
        if (navigator.appName == "Microsoft Internet Explorer") {
        document.getElementById("pleasewait").innerHTML = "";
        document.getElementById("pleasewait").style.display = "block";
        document.getElementById("pleasewait").innerHTML = "<img src='../images/pleasewait_2.gif' alt='Please Wait'><br /><strong>Please wait your bid is processing</strong><br />";
        } else {
        document.getElementById("pleasewait").style.display = "block";        
        }
    }
    Next file.. includes\templates\template_default\templates\tpl_product_auction_info_display.p hp

    line 164 find the line with zen_drew_form, find
    Code:
    'onsubmit="return check_form(place_bid);"'
    replace with this..
    Code:
    'onsubmit="return SubmitOrderButton();"'
    line 176 replace this line ..
    Code:
    <td><?php echo zen_image_submit(BUTTON_IMAGE_SUBMIT_AUCTION_BID, BUTTON_SUBMIT_AUCTION_BID_ALT); ?></td>
    with this line..
    Code:
    <td><div id="submitmain" ><?php echo zen_image_submit(BUTTON_IMAGE_SUBMIT_AUCTION_BID, BUTTON_SUBMIT_AUCTION_BID_ALT); ?></div>
              <div id="pleasewait" class="main"><?php echo zen_image(DIR_WS_TEMPLATE_IMAGES .'pleasewait_2.gif', 'Please Wait') . '<br /><strong>Please wait your bid is processing</strong>';?></div></td>
    I don't have a working 99a test site so this is untested... make sure you test it before going live. This same format is what I'm using on my site...
    Dave
    Always forward thinking... Lost my mind!

  3. #353
    Join Date
    Sep 2007
    Posts
    128
    Plugin Contributions
    0

    Default Re: Auction Product Type

    Thank you! I'm reinstalling my test site right now and will let you know how it goes.

  4. #354
    Join Date
    Sep 2007
    Posts
    128
    Plugin Contributions
    0

    Default Re: Auction Product Type

    Darn - I installed the above code and still was able to click the submit button twice quickly and submitted two bids - same amount, same id.

    Admittedly, maybe I installed the code incorrectly but the auction still works - I just didn't get that whole please wait thing and it allowed me to double click.

  5. #355
    Join Date
    Apr 2008
    Posts
    446
    Plugin Contributions
    1

    Default Re: Auction Product Type

    Hello everyone, just a couple of quick questions,
    I just noticed the larger image link points to a popup window instead of the lightbox that I have installed, anyone have this changed? also, when is the next update coming out?

    Thank you!
    M.Valenti
    Contemporary Artist - Entrepreneur
    http://www.manuelavalenti.com - http://www.byvalenti.com

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

    Default Re: Auction Product Type

    Quote Originally Posted by janellez View Post
    Darn - I installed the above code and still was able to click the submit button twice quickly and submitted two bids - same amount, same id.

    Admittedly, maybe I installed the code incorrectly but the auction still works - I just didn't get that whole please wait thing and it allowed me to double click.
    It works for me... The script needs to be in the html auction page or it will take to much time to run and another click could get through. View the page source to make sure the script is in the header and the onclick event is showing up.

    @mvstudio
    Fuel Slimbox worked with the main image, but not the additional images. Next release will fix that problem.
    Dave
    Always forward thinking... Lost my mind!

  7. #357
    Join Date
    Apr 2008
    Posts
    446
    Plugin Contributions
    1

    Default Re: Auction Product Type

    weird... it doesn't work with the main image for me either.. has that being updated on the current version?
    M.Valenti
    Contemporary Artist - Entrepreneur
    http://www.manuelavalenti.com - http://www.byvalenti.com

  8. #358
    Join Date
    Jan 2007
    Posts
    50
    Plugin Contributions
    0

    Default Re: Auction Product Type

    I found another problem.... when a customer wins an auction and they go to pay for it... it shows them the BUY IT NOW price instead of the price they won the auction.

    I looked throughout this thread but could not find anyone else with this issue.

  9. #359
    Join Date
    Mar 2009
    Location
    Kibbutz Beit Kama, Israel
    Posts
    6
    Plugin Contributions
    0

    Default Re: Auction Product Type

    Hi all,


    Before I start complaining, I would like to say that the module looks like it has very good potential, and generally functions well. I have been playing with the it for a couple of weeks. I've installed/uninstalled it a couple of times. Now I have had a couple of problems with it:

    1) The cron is set up, but no emails are sent out. It was working in the past, so I don't know why it stopped.

    2) The bread crumbs are displayed twice on the product page

    3) Also on this page, it seems that the day/hour/minutes to the end of the auction are hard coded, and are not translatable.

    4) In admin the name of the auction type is editable, but if you change it you break the module, because the module looks for this name in the db. It's nice being able to edit the product type name, so perhaps it should be changed to lookup on a non-editable field...

    5) During my testing, I won an auction below the reserve price. At that time I was still receiving emails. I got a notification telling me I had the winning bid, and allowed me to purchase it at the lower price!

  10. #360
    Join Date
    Mar 2009
    Location
    Kibbutz Beit Kama, Israel
    Posts
    6
    Plugin Contributions
    0

    Default Re: Auction Product Type

    Answering my own post :-)

    To accommodate translation of days, hours and minutes:

    in file includes/templates/template_default/templates/tpl_product_auction_info_display.php at line 100:
    change
    Code:
    <td align="center" class="main"><?php echo TEXT_DATE_AVAILABLE .$days_left." days ".$hours_left." hours ".$minutes_left." minutes"; ?>
    to
    Code:
    <td align="center" class="main"><?php echo TEXT_DATE_AVAILABLE .$days_left. TEXT_DAYS .$hours_left. TEXT_HOURS .$minutes_left. TEXT_MINUTES; ?>


    Add the following to file includes/languages/english/product_auction_info.php (and any additional languages)

    Code:
    define('TEXT_DAYS',' days ');
    define('TEXT_HOURS',' hours ');
    define('TEXT_MINUTES',' minutes');


    Will send a fix for the editable product type name shortly...

 

 
Page 36 of 74 FirstFirst ... 26343536373846 ... 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