Page 36 of 281 FirstFirst ... 2634353637384686136 ... LastLast
Results 351 to 360 of 2805
  1. #351
    Join Date
    Jun 2015
    Location
    California
    Posts
    54
    Plugin Contributions
    0

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by lat9 View Post
    Thanks for that update, @LightBrown. Which version of COWOA did you use for the integration?
    V 2.6, I think.

  2. #352
    Join Date
    Apr 2006
    Location
    Ohio
    Posts
    6,162
    Plugin Contributions
    0

    Default Re: One-Page Checkout [Support Thread]

    A report that quantity discounts 1.12.1 & preview 1.12 (paid mod) works with OPC ...
    Mark
    Hare Do

  3. #353
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,488
    Plugin Contributions
    88

    Default Re: One-Page Checkout [Support Thread]

    Thanks for that, haredo!

  4. #354
    Join Date
    Jul 2010
    Location
    Australia
    Posts
    231
    Plugin Contributions
    0

    Default Re: One-Page Checkout [Support Thread]

    My apologies if this is a silly question, but how does this plugin differ from the Paypal Express Checkout that comes standard with Zencart?

  5. #355
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,488
    Plugin Contributions
    88

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by ttfan View Post
    My apologies if this is a silly question, but how does this plugin differ from the Paypal Express Checkout that comes standard with Zencart?
    This plugin provides a reformatting of the checkout pages, so instead of going from checkout_shipping to checkout_payment to checkout_confirmation your customers will normally see a consolidation of those three pages into a single checkout_one page. Depending on the payment methods that your store uses, your customers might also see a confirmation page.

    Essentially, the checkout process gets a bit more streamlined by this plugin's processing.

  6. #356
    Join Date
    Oct 2005
    Location
    Chicago, IL USA
    Posts
    1,557
    Plugin Contributions
    28

    Default Re: One-Page Checkout [Support Thread]

    I do love this plugin. I have a client using Klarna for payment. I was expecting it would be a problem, and it is. I get 'the details of your order have changed' error. Klarna isn't a popular payment module, so not sure if you want to try and tackle this one or not. If yes, I can send the error log.

  7. #357
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,488
    Plugin Contributions
    88

    Default Re: One-Page Checkout [Support Thread]

    James, what happens after you edit the following block in /includes/modules/pages/checkout_one_confirmation/header_php.php:
    Code:
    // -----
    // There are some payment methods (like eWay) that "replace" the confirmation form via the HTML they return on
    // the "process_button" payment-class function.  Rather than hard-code the list in code, below, the following
    // constant will be updated as additional payment-methods that make use of that interface are identified.
    //
    if (!defined ('CHECKOUT_ONE_CONFIRMATION_REQUIRED')) {
        define ('CHECKOUT_ONE_CONFIRMATION_REQUIRED', 'eway_rapid,stripepay,gps');
    }
    to include that Klarna payment method, presumed to have a payment-module-code of klarna:
    Code:
    // -----
    // There are some payment methods (like eWay) that "replace" the confirmation form via the HTML they return on
    // the "process_button" payment-class function.  Rather than hard-code the list in code, below, the following
    // constant will be updated as additional payment-methods that make use of that interface are identified.
    //
    if (!defined ('CHECKOUT_ONE_CONFIRMATION_REQUIRED')) {
        define ('CHECKOUT_ONE_CONFIRMATION_REQUIRED', 'eway_rapid,stripepay,gps,klarna');
    }
    Last edited by lat9; 8 Feb 2017 at 05:54 PM. Reason: Corrected payment-module name misspelling

  8. #358
    Join Date
    Oct 2005
    Location
    Chicago, IL USA
    Posts
    1,557
    Plugin Contributions
    28

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by lat9 View Post
    James, what happens after you edit the following block in /includes/modules/pages/checkout_one_confirmation/header_php.php:
    Code:
    // -----
    // There are some payment methods (like eWay) that "replace" the confirmation form via the HTML they return on
    // the "process_button" payment-class function.  Rather than hard-code the list in code, below, the following
    // constant will be updated as additional payment-methods that make use of that interface are identified.
    //
    if (!defined ('CHECKOUT_ONE_CONFIRMATION_REQUIRED')) {
        define ('CHECKOUT_ONE_CONFIRMATION_REQUIRED', 'eway_rapid,stripepay,gps');
    }
    to include that Klarna payment method, presumed to have a payment-module-code of klarna:
    Code:
    // -----
    // There are some payment methods (like eWay) that "replace" the confirmation form via the HTML they return on
    // the "process_button" payment-class function.  Rather than hard-code the list in code, below, the following
    // constant will be updated as additional payment-methods that make use of that interface are identified.
    //
    if (!defined ('CHECKOUT_ONE_CONFIRMATION_REQUIRED')) {
        define ('CHECKOUT_ONE_CONFIRMATION_REQUIRED', 'eway_rapid,stripepay,gps,klarna');
    }
    That might have fixed it. I'm getting an error back from Klarna that the phone number is mis-formatted so I'll track that down now.

  9. #359
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,488
    Plugin Contributions
    88

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by jeking View Post
    That might have fixed it. I'm getting an error back from Klarna that the phone number is mis-formatted so I'll track that down now.
    In the next release of the OPC, I'm going to just move that PHP definition into an admin-configurable setting; it'll make these "special" payment methods easier to deal with.

  10. #360
    Join Date
    Oct 2005
    Location
    Chicago, IL USA
    Posts
    1,557
    Plugin Contributions
    28

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by lat9 View Post
    In the next release of the OPC, I'm going to just move that PHP definition into an admin-configurable setting; it'll make these "special" payment methods easier to deal with.
    There's always something.

    Once I get this working, I'll confirm if there are any other issues or if this was all that's needed.

 

 

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