Page 2 of 279 FirstFirst 12341252102 ... LastLast
Results 11 to 20 of 2784
  1. #11
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,399
    Plugin Contributions
    87

    Default Re: One-Page Checkout [Support Thread]

    Got the log, Gary, and it's weird. The shipping-method chosen (table2_table2) is set in the order, but it doesn't appear to be set into the session (and that's what's "confusing" the one-page checkout page's handling).

    Do you have any plugin observers (files present in /includes/classes/observers) that might be performing that update?

  2. #12
    Join Date
    Jul 2016
    Location
    Ayrshire, Scotland
    Posts
    3
    Plugin Contributions
    0

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by lat9 View Post
    Got the log, Gary, and it's weird. The shipping-method chosen (table2_table2) is set in the order, but it doesn't appear to be set into the session (and that's what's "confusing" the one-page checkout page's handling).

    Do you have any plugin observers (files present in /includes/classes/observers) that might be performing that update?
    I have the Google recaptcha plugin on my site which includes an additional file in the observers folder called class.google_recaptcha.php which adds a recaptcha check on the contact page and create account pages. The only other file in this folder is the class.products_viewed_counter.php which I believe is part of the original install.

    Thanks,
    Gary

  3. #13
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,399
    Plugin Contributions
    87

    Default Re: One-Page Checkout [Support Thread]

    I've got a couple of updates available on the plugin's github repository, specifically to address the two issues that @frank18 identified:

    1. Missing T&C block; if enabled, it's now displayed just above the submit button.
    2. Support for eWay payment method, which seems to do a bit of a one-off in its handling of the process_button function.

    These will be included in a forth-coming v1.0.1 release of the plugin.

  4. #14
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,399
    Plugin Contributions
    87

    Default Re: One-Page Checkout [Support Thread]

    v1.0.0 is now available for download from the Zen Cart plugins: https://www.zen-cart.com/downloads.php?do=file&id=2095

    As I indicated above, I'm "gathering" additional updates that will comprise v1.0.1 with corrections for the items currently reported.

  5. #15
    Join Date
    Nov 2007
    Location
    Sunny Coast, Australia
    Posts
    3,379
    Plugin Contributions
    9

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by lat9 View Post
    I've got a couple of updates available on the plugin's github repository, specifically to address the two issues that @frank18 identified:

    1. Missing T&C block; if enabled, it's now displayed just above the submit button.
    2. Support for eWay payment method, which seems to do a bit of a one-off in its handling of the process_button function.

    These will be included in a forth-coming v1.0.1 release of the plugin.
    The latest github download works a treat for me, especially for a payment module like eWay.

    Made some tweaks such as pre-selecting eWay as payment method and added a few bits and pieces which are only relevant for one of my stores. All good!

    But found another little 'boo-boo':

    In the file includes/templates/template_default/templates/tpl_checkout_one_confirmation_default.php the $editShippingButtonLink takes me back to the home page instead to the address book for editing the shipping address in the order.

    It looks like that $editShippingButtonLink does not carry from the previous page.

    So in the file includes/modules/pages/checkout_one_confirmation/header_php.php below line 95 I added

    Code:
    $editShippingButtonLink = zen_href_link (FILENAME_CHECKOUT_SHIPPING_ADDRESS, '', 'SSL');
    and that did the trick for me.
    Last edited by frank18; 4 Aug 2016 at 07:20 AM.

  6. #16
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,399
    Plugin Contributions
    87

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by frank18 View Post
    The latest github download works a treat for me, especially for a payment module like eWay.

    Made some tweaks such as pre-selecting eWay as payment method and added a few bits and pieces which are only relevant for one of my stores. All good!

    But found another little 'boo-boo':

    In the file includes/templates/template_default/templates/tpl_checkout_one_confirmation_default.php the $editShippingButtonLink takes me back to the home page instead to the address book for editing the shipping address in the order.

    It looks like that $editShippingButtonLink does not carry from the previous page.

    So in the file includes/modules/pages/checkout_one_confirmation/header_php.php below line 95 I added

    Code:
    $editShippingButtonLink = zen_href_link (FILENAME_CHECKOUT_SHIPPING_ADDRESS, '', 'SSL');
    and that did the trick for me.
    Thanks, Frank, I had a feeling that I was going to need to get those "edit-button-link" values set when the on-page confirmation is displayed. I'll get that noted/updated as well.

  7. #17
    Join Date
    Aug 2009
    Location
    North Idaho, USA
    Posts
    2,008
    Plugin Contributions
    1

    Default Re: One-Page Checkout [Support Thread]

    Question?

    Does Auth.net AIM mean it has only been tested & functional with AIM?
    Does that mean it has not been tested or known to not function with Auth.net SIM?

    I don't want to go down a path of known headache unnecessarily.
    ZC1.5.4

    Not ready to go down the ZC1.5.5a road.
    Rick
    RixStix (dot) com
    aka: ChainWeavers (dot) com

  8. #18
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,399
    Plugin Contributions
    87

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by RixStix View Post
    Question?

    Does Auth.net AIM mean it has only been tested & functional with AIM?
    Does that mean it has not been tested or known to not function with Auth.net SIM?

    I don't want to go down a path of known headache unnecessarily.
    ZC1.5.4

    Not ready to go down the ZC1.5.5a road.
    Rick, the plugin "should" work just fine with Auth.net SIM. Since the A.net AIM implementation accepts credit-card-data-onsite, my thought was that that method was going to be (one of) the edge cases.

    One-Page Checkout's default installation overwrites only one core-file (/includes/classes/message_stack.php) and can be turned on/off with a single configuration click. If you've got a test-site for your store, you could "drop" the files into that file-system to do a validation.

    The plugin has been verified on ZC 1.5.4, with those additional core-/template-file overwrites.

  9. #19
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,399
    Plugin Contributions
    87

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by lat9 View Post
    Thanks, Frank, I had a feeling that I was going to need to get those "edit-button-link" values set when the on-page confirmation is displayed. I'll get that noted/updated as well.
    That update is now available from the plugin's GitHub repository.

  10. #20
    Join Date
    Aug 2009
    Location
    North Idaho, USA
    Posts
    2,008
    Plugin Contributions
    1

    Default Re: One-Page Checkout [Support Thread]

    Thanks Cindy.

    We switched from AIM to SIM because the latest PCI version moved from SAQ-c to SAQ-d which is a significantly more onerous.
    Rick
    RixStix (dot) com
    aka: ChainWeavers (dot) com

 

 
Page 2 of 279 FirstFirst 12341252102 ... LastLast

Similar Threads

  1. Set number of products displayed per page (support thread)
    By yellow1912 in forum All Other Contributions/Addons
    Replies: 146
    Last Post: 2 Nov 2023, 12:50 AM
  2. v151 Banners In Main Page - Support Thread
    By stevesh in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 18 Sep 2021, 03:36 PM
  3. v151 Site Map/Page Not Found: Combined [Support Thread]
    By lat9 in forum All Other Contributions/Addons
    Replies: 7
    Last Post: 4 Jan 2016, 02:19 PM
  4. v151 PayPal Express Checkout Using NVP 84.0 [Support Thread]
    By lat9 in forum Addon Payment Modules
    Replies: 32
    Last Post: 28 Dec 2015, 04:54 PM
  5. Checkout Amazon Style -- Support Thread
    By CJPinder in forum All Other Contributions/Addons
    Replies: 72
    Last Post: 13 Apr 2011, 08:18 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