Page 249 of 296 FirstFirst ... 149199239247248249250251259 ... LastLast
Results 2,481 to 2,490 of 2956
  1. #2481
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,450
    Plugin Contributions
    11

    Default Re: One-Page Checkout [Support Thread]

    Try both silversageherbsDOTcom and topkayakerDOTcom with something in guest checkout.

    Does either look like something you could work with?

  2. #2482
    Join Date
    Jan 2015
    Posts
    491
    Plugin Contributions
    0

    Default Re: One-Page Checkout [Support Thread]

    dbltoe,

    Its basically the same thing as have now. but you added
    "Enter your Billing address. We'll verify your shipping address After you select Save Changes."

    I might be able to work with topkayaker
    Last edited by chadlly2003; 8 Oct 2022 at 01:03 AM.

  3. #2483
    Join Date
    Jan 2015
    Posts
    491
    Plugin Contributions
    0

    Default Re: One-Page Checkout [Support Thread]

    I just showed the client the two examples you gave me. He like them both but he is very stubborn about the wrong pricing displaying if the customer is a guest and has a different address.

    He also noticed that when you have a shipping address you have to remove the pre populated address before entering the shipping address as a guest.

    Can this module achieve what I am looking for?

  4. #2484
    Join Date
    Aug 2004
    Posts
    797
    Plugin Contributions
    0

    Default Re: One-Page Checkout [Support Thread]

    Cindy - I have a question. I wanted to install the FraudLabs module (https://www.zen-cart.com/downloads.php?do=file&id=1746) which interfaces with ZenCart to help prevent credit card fraud.

    It seems that this module has only one core file that it modifies:

    catalog\includes\modules\pages\checkout_process\header_php.php

    The only thing it does to that file is add the following line near the top of that file:

    Code:
    require(DIR_WS_MODULES . 'fraudlabspro/fraudlabspro.php');
    (screenshot: https://i.postimg.cc/KcL1MYjm/screenshot-287.png)

    However, I am not seeing our credit card orders being processed by the FraudLabs function, and I'm using One Page Checkout (which I don't think relies on the modules\pages\checkout_process\header_php.php

    So do you know where I should possibly try to add that line of code (require(DIR_WS_MODULES . 'fraudlabspro/fraudlabspro.php');) in your One Page Checkout header? I am curious if I just need to put it into a different spot and then I can see if it works.
    - Jeff

  5. #2485
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,352
    Plugin Contributions
    94

    Default Re: One-Page Checkout [Support Thread]

    @Jeff_Mash, I'll suggest you give it a try with 3-page checkout, too ... but OPC's functionality combines checkout_shipping, checkout_payment and checkout_confirmation into a single page and, as you indicated, has no bearing on the checkout_process step.

    One thing I saw in my review of the code is that they're using file_get_contents to retrieve a CURL response which, depending on your webhost's configuration, might not be permitted. Unfortunately, they've also got any errors issued from that call @-blocked. You could try removing the @ from the @file_get_contents on line 109 of the fraudlabspro.php module and see if that's where the issue lies.

  6. #2486
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,450
    Plugin Contributions
    11

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by chadlly2003 View Post
    I just showed the client the two examples you gave me. He like them both but he is very stubborn about the wrong pricing displaying if the customer is a guest and has a different address.
    You would have to point out to me the steps taken that result in the wrong pricing being presented to the customer.

    Everytime a save button in billing or shipping is clicked, the OPC is sending the address to Zen Cart for processing. It's not done in OPC.

    If resultant shipping fee (other than Free or Store Pickup) is not changing with an order billed in Dallas and changing the Shipping address to Miami, something else is fubar in your Shipping settings.

    The only other "wrong-pricing" I could think of is if you have tax set to billing and it should be set to shipping in most states with sales tax. Very important if you're in a state that has different settings for the shipping address. Pennsylvania is one that comes to mind.

    The reason topkayaker has Enable Shipping = Billing as false is not to fix the problem you describe. Their problem is the number of folks that would not read and entered the Shipping address as Billing. At least 10% of their weekly orders were made with the shipping in the billing. Of course, if the shipping Zip did not match the billing address of the card, the transaction would be declined and a phone call or email resulted in staff time pointing out to buyeers how to correctly enter the data.

    Still the customer not reading or the browser using an incorrect auto-fill should not result in a sale with the wrong amount.

  7. #2487
    Join Date
    Aug 2004
    Posts
    797
    Plugin Contributions
    0

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by lat9 View Post
    @Jeff_Mash, I'll suggest you give it a try with 3-page checkout, too ... but OPC's functionality combines checkout_shipping, checkout_payment and checkout_confirmation into a single page and, as you indicated, has no bearing on the checkout_process step.

    One thing I saw in my review of the code is that they're using file_get_contents to retrieve a CURL response which, depending on your webhost's configuration, might not be permitted. Unfortunately, they've also got any errors issued from that call @-blocked. You could try removing the @ from the @file_get_contents on line 109 of the fraudlabspro.php module and see if that's where the issue lies.
    I'll remove the @ on line 109 just to see if that will do anything.

    One of the MAIN reasons why I love OPC is not for the single page, but rather, for the ability to have Guest Checkout.

    As it stands, if the configuration for "Enable One-Page Checkout?" is set to false, it turns off the entire module. But since you also have an "Enable Guest Checkout?" value, is there any possibility in future releases where one can not be dependent on the other?

    For example, can have the 3 page checkout (by setting Enable OPC to false), but also have the Guest checkout option by setting that to true?
    - Jeff

  8. #2488
    Join Date
    Jan 2015
    Posts
    491
    Plugin Contributions
    0

    Default Re: One-Page Checkout [Support Thread]

    dbltoe,

    I was not being clear on the primary issue. The price is showing just fine.

    When you checkout as a “guest”

    When you fill out billing/shipping address. There is no option (if the shipping address is different) until the next page. (So if the customer has a different address they will get an incorrect shipping rate when they click on save because they have no way of entering that information until the next page.

    Is there a way we can change that?

    “Of course, if the shipping Zip did not match the billing address of the card, the transaction would be declined and a phone call or email resulted in staff time pointing out to buyeers how to correctly enter the data.”

    This statement is not applicable to my website.
    Transactions on my website -- Billing and Shipping address always differ.
    We have implemented a security feature which tells us if the purchase is fraud within minutes of the transaction for that specific reason.

  9. #2489
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,450
    Plugin Contributions
    11

    Default Re: One-Page Checkout [Support Thread]

    Neither is it clear when you say
    they have no way of entering that information until the next page.
    The whole idea of OPC is that it happens on ONE page. You may be referring to the page refreshing after any save button in the billing/shipping area but it is not changing pages.

    With the Enable Shipping=Billing? set to false, all the address forms appear on the one page. The only extra step is that the user has to click on save to "activate" the shipping address.

    If you prefer both to be active, you will need to find a developer to modify the process but, I would think the current steps on saving one before entering the other are important steps in the process. Might be a good idea to show up with your car title for collateral. It may not be a cakewalk.

  10. #2490
    Join Date
    Mar 2009
    Location
    New Zealand
    Posts
    76
    Plugin Contributions
    0

    Default Re: One-Page Checkout [Support Thread]

    ZC v1.5.7d
    OPC 2.4.3
    Preview Email 1.4

    OPC appears to be causing issues with preview e-mail or vice versa, debug is as follows:

    [13-Oct-2022 22:45:25 UTC] Request URI: /**admin/index.php?cmd=preview_email, IP address: 103.45.241.65
    --> PHP Fatal error: Uncaught Error: Call to undefined function opc_load_legacy_language_definitions() in /home/****/public_html/includes/languages/english/checkout_process_guest.php:12
    Stack trace:
    #0 /home/***/public_html/includes/modules/require_languages.php(22): require_once()
    #1 /home/***/public_html/**admin/includes/functions/extra_functions/preview_email.php(251): require('/home/**...')
    #2 /home/***/public_html/**admin/preview_email.php(58): build_checkout_email()
    #3 /home/***/public_html/**admin/index.php(11): require('/home/**...')
    #4 {main}
    thrown in /home/**/public_html/includes/languages/english/checkout_process_guest.php on line 12.

    opc_load_legacy_language_definitions() is defined in includes/functions/extra_functions/one_page_checkout_functions.php, so im not sure what is causing the issue.

    Thanks

 

 

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