Page 38 of 218 FirstFirst ... 2836373839404888138 ... LastLast
Results 371 to 380 of 2177
  1. #371
    Join Date
    Apr 2008
    Location
    Flint, Michigan
    Posts
    687
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout for Zen Cart

    Does anyone know how to move the Shipping Method before shopping cart contents at the top of the page.

  2. #372
    Join Date
    Jan 2007
    Posts
    1,483
    Plugin Contributions
    10

    Default bug with credit card error

    I have just upgraded to 1.25, using ZC 1.3.7.1. I am using all of the new files apart from the tpl_checkout_default file which I kept from v 1.05 since I don't care about the split page/stacked page options and all of the code seemed to be essentially the same between the old tpl_checkout_default and the new tpl_checkout_default with tpl_checkout_split(apart from the old file not using tables). Everything functions correctly except for the following error.

    When I enter an invalid credit card expiration date and click submit, I am taken to the fec_checkout_confirmation page, which then kicks me back to the checkout page with the correct error message.

    Where the bug is, is that when you are redirected back to the checkout page the url is only &main_page=checkout and not &main_page=checkout&action=null. What happens is that when I enter in the credit card info again and click submit, the page just refreshes and the new url is &main_page=checkout&action=null. I then have to resubmit the credit card info again to get to the checkout confirmation page again.

    I have looked through the header_php files in both modules>pages>checkout and modules>pages>fec_checkout_confirmation, and at the various tpl files in templates>my_template>templates but can't see where the error is.

    Is this a known issue, and if so is there a workaround? It adds a level of confusion and frustration for the user when they are having pages refresh for no apparent reason.

    Thanks for continuing to develop and support your mods, Numinix!!

    Zen Cart and it's community are the best!!

  3. #373
    Join Date
    Apr 2007
    Location
    Vancouver, Canada
    Posts
    1,550
    Plugin Contributions
    70

    Default Re: bug with credit card error

    Quote Originally Posted by lankeeyankee View Post
    I have just upgraded to 1.25, using ZC 1.3.7.1. I am using all of the new files apart from the tpl_checkout_default file which I kept from v 1.05 since I don't care about the split page/stacked page options and all of the code seemed to be essentially the same between the old tpl_checkout_default and the new tpl_checkout_default with tpl_checkout_split(apart from the old file not using tables). Everything functions correctly except for the following error.

    When I enter an invalid credit card expiration date and click submit, I am taken to the fec_checkout_confirmation page, which then kicks me back to the checkout page with the correct error message.

    Where the bug is, is that when you are redirected back to the checkout page the url is only &main_page=checkout and not &main_page=checkout&action=null. What happens is that when I enter in the credit card info again and click submit, the page just refreshes and the new url is &main_page=checkout&action=null. I then have to resubmit the credit card info again to get to the checkout confirmation page again.

    I have looked through the header_php files in both modules>pages>checkout and modules>pages>fec_checkout_confirmation, and at the various tpl files in templates>my_template>templates but can't see where the error is.

    Is this a known issue, and if so is there a workaround? It adds a level of confusion and frustration for the user when they are having pages refresh for no apparent reason.

    Thanks for continuing to develop and support your mods, Numinix!!
    This is a valid bug and is fixed in v1.26 just released.

    Thank you for the detailed bug report.

  4. #374
    Join Date
    Jan 2007
    Posts
    1,483
    Plugin Contributions
    10

    Default Re: bug with credit card error

    Quote Originally Posted by numinix View Post
    This is a valid bug and is fixed in v1.26 just released.

    Thank you for the detailed bug report.
    Thanks! It works now.

    Zen Cart and it's community are the best!!

  5. #375
    Join Date
    Dec 2008
    Posts
    57
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout for Zen Cart

    I just installed FEC and it worked wonderfully even though I do not test payment with checkout yet. I search for Easy Sign-Up and Login add-on but couldn't find it.

    I saw your website and I like the idea of having login area and register area separate - is it related to Easy Sign-Up and Login?

    If so, could you please direct me to the url where I can download it?

    thank you.

  6. #376
    Join Date
    Jan 2007
    Posts
    1,483
    Plugin Contributions
    10

    Default possible bug?

    I'm not sure if this has to do with me using the tpl_checkout_default from v1.05 instead of the one in v1.26. I have upgraded all of the other files to FEC v1.26(although of course my FEC won't call tpl_checkout_split or _stacked).

    The refresh button on the coupon field doesn't work plus when changing shipping methods the page is not automatically refreshed to show the new shipping price.

    I checked through the files and finally figured out that modules>pages>checkout>jscript_main.php is different from v1.05. The difference is the old version uses document.checkout while the new version uses document.checkout_payment throughout the file. Apart from that the files are identical. Once I changed it to the v1.05 file the refreshes worked.

    Has anyone else experienced this or is it just me?

    Zen Cart and it's community are the best!!

  7. #377
    Join Date
    Apr 2007
    Location
    Vancouver, Canada
    Posts
    1,550
    Plugin Contributions
    70

    Default Re: possible bug?

    Quote Originally Posted by lankeeyankee View Post
    I'm not sure if this has to do with me using the tpl_checkout_default from v1.05 instead of the one in v1.26. I have upgraded all of the other files to FEC v1.26(although of course my FEC won't call tpl_checkout_split or _stacked).

    The refresh button on the coupon field doesn't work plus when changing shipping methods the page is not automatically refreshed to show the new shipping price.

    I checked through the files and finally figured out that modules>pages>checkout>jscript_main.php is different from v1.05. The difference is the old version uses document.checkout while the new version uses document.checkout_payment throughout the file. Apart from that the files are identical. Once I changed it to the v1.05 file the refreshes worked.

    Has anyone else experienced this or is it just me?
    Yes, it was changed to checkout_payment throughout the module to avoid compatibility issues with payment modules. Of course the JavaScript will not work if the form names do not match...

  8. #378
    Join Date
    Jan 2007
    Posts
    1,483
    Plugin Contributions
    10

    Default Re: possible bug?

    Quote Originally Posted by numinix View Post
    Yes, it was changed to checkout_payment throughout the module to avoid compatibility issues with payment modules. Of course the JavaScript will not work if the form names do not match...
    Thanks for the clarification. I changed the zen_draw_form to ('checkout_payment' .....) and the message_stack error from checkout to checkout_shipping and it works now, apart from the TEXT_VALID_COUPON message doesn't display when a coupon is redeemed. I checked it out in /includes/modules/order_total/ot_coupon.php and the code is:

    PHP Code:
    $messageStack->add_session('checkout'TEXT_VALID_COUPON,'success'); 
    If I change it to:

    PHP Code:
    $messageStack->add_session('checkout_payment'TEXT_VALID_COUPON,'success'); 
    it works.

    One thing that I have noticed, a user can only redeem one coupon during checkout. So if they have 2 separate coupons they cannot use both during checkout. Is this a default ZC behavior, or is it specific to FEC?

    Zen Cart and it's community are the best!!

  9. #379
    Join Date
    Apr 2007
    Location
    Vancouver, Canada
    Posts
    1,550
    Plugin Contributions
    70

    Default Re: possible bug?

    Quote Originally Posted by lankeeyankee View Post
    Thanks for the clarification. I changed the zen_draw_form to ('checkout_payment' .....) and the message_stack error from checkout to checkout_shipping and it works now, apart from the TEXT_VALID_COUPON message doesn't display when a coupon is redeemed. I checked it out in /includes/modules/order_total/ot_coupon.php and the code is:

    PHP Code:
    $messageStack->add_session('checkout'TEXT_VALID_COUPON,'success'); 
    If I change it to:

    PHP Code:
    $messageStack->add_session('checkout_payment'TEXT_VALID_COUPON,'success'); 
    it works.

    One thing that I have noticed, a user can only redeem one coupon during checkout. So if they have 2 separate coupons they cannot use both during checkout. Is this a default ZC behavior, or is it specific to FEC?
    Thank you for the report.

    For your last question, you'll have to test on a default installation and see how it reacts.

  10. #380
    Join Date
    Apr 2008
    Posts
    446
    Plugin Contributions
    1

    Default Re: Fast and Easy Checkout for Zen Cart

    Hello Numinix, thank you for this wonderful module.
    I've been using it for quite a while and just updated to the latest version today, and noticed something not working as before.

    With the previous version I was having a google checkout radio button on the checkout stacked page and with the latest version, the google checkout payment option disappeared from the page.

    I was wondering if this is some issue that was not reported?

    I would like to have the option for customers to select either paypal or google checkout at the last minute on the payment processing in case they change their minds without having to hit the back button. Is this possible to have it included again?

    Thank you!

    MV./
    M.Valenti
    Contemporary Artist - Entrepreneur
    http://www.manuelavalenti.com - http://www.byvalenti.com

 

 

Similar Threads

  1. Replies: 4
    Last Post: 25 Jan 2012, 07:37 PM
  2. Fast and Easy Checkout - Checkout Without Account not showing
    By Lee-oh in forum All Other Contributions/Addons
    Replies: 6
    Last Post: 3 Feb 2010, 05:09 PM
  3. Go To Checkout Error - with Fast and Easy Checkout installed
    By RFree190 in forum General Questions
    Replies: 3
    Last Post: 10 Mar 2009, 07:08 AM
  4. checkout page not redirect (Fast and Easy Checkout module)
    By wowemall in forum Addon Templates
    Replies: 0
    Last Post: 27 Sep 2008, 02:36 PM
  5. Fast and Easy Checkout
    By cmes in forum General Questions
    Replies: 5
    Last Post: 15 Feb 2008, 04:07 PM

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