Page 299 of 305 FirstFirst ... 199249289297298299300301 ... LastLast
Results 2,981 to 2,990 of 3045
  1. #2981
    Join Date
    Apr 2011
    Posts
    584
    Plugin Contributions
    0

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by lat9 View Post
    A couple of things with your site-specific customizations:
    1. I'm not sure what the goal is with the addition of a <div id="main-content" class="box_spacer"> is, but I don't think that that's helping.
    Not sure why this <div> was added into the new responsive classic template. It only contains "margin" in the css which may or may not contribute to the "shrinked" display on desktop.
    2. Your stylesheet_zcustom.css is overriding the onerow-fluid class' layout
    unfortunately, ZC developer tool kit is not coming with anything on class'layout'.

    Is there a sample site that use OPC? It would be great to be able to compare the original OPC behavior on a standard ZC site.

    Thank you

  2. #2982
    Join Date
    Jun 2007
    Location
    Bronx, New York, United States
    Posts
    934
    Plugin Contributions
    9

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by retched View Post
    PHP 8.4 / ZC 2.1.0 / OPC 2.5.5

    This is a bit of a weird one. I'm trying to modify the Square WebPay payment module to add on Square's CashApp payments to be processed through the site. So far, it works when I do so with the standard checkout and One Page Checkout with nothing extra added.

    However, if I enable the option "Confirm Terms and Conditions During Checkout Procedure" and then try to proceed with one-page checkout, ZenCart will alert that I need to confirm to the terms of service. But clicking that checkbox, and then trying to confirm order, it stops cold (no processing) or anything. Meanwhile, if I get rid of the checkbox to agree to Terms, it works fine.

    I noticed on Developer Console the following "warnings"(?):

    Code:
    Content Script Bridge: Sending response back to page context: {isAllowListed: false, isProtectionEnabled: true, isScamsProtectionEnabled: true}content-scripts.js:1 CONTENT_SHELL: Page is excluded. Skipping shell protection.
    content-scripts.js:1 Content Script Bridge: Unknown message type,  MSG_CHECK_DOMAIN_ALLOW_LIST_RESPONSE
    injection-tss-mv3.js:1 TSS: Received response from checkDomainAndRun: {isAllowListed: false, isProtectionEnabled: true, isScamsProtectionEnabled: true}
    injection-tss-mv3.js:1 injection-tss TSS: hosted page injected
    injection-tss-mv3.js:1 injection-tss MBTSS: Nonce:  nonce
    content-scripts.js:1 TSS: excluded result:  true
    content-scripts.js:1 SCHJK: Search Hijacking notification feature flag is enabled. true
    content-scripts.js:1 DFP: Breach notification feature flag is enabled. true
    content-scripts.js:1 CONTENT_SHELL: Page is excluded. Skipping shell protection.
    content-scripts.js:1 TSS: excluded result:  true
    content-scripts.js:1 Content Script Bridge: Sending response back to page context: {isAllowListed: false, isProtectionEnabled: true, isScamsProtectionEnabled: true}
    content-scripts.js:1 Content Script Bridge: Unknown message type,  MSG_CHECK_DOMAIN_ALLOW_LIST_RESPONSE
    injection-tss-mv3.js:1 TSS: Received response from checkDomainAndRun: {isAllowListed: false, isProtectionEnabled: true, isScamsProtectionEnabled: true}
    injection-tss-mv3.js:1 injection-tss TSS: hosted page injected
    injection-tss-mv3.js:1 injection-tss MBTSS: Nonce:  nonce
    content-scripts.js:1 SCHJK: Search Hijacking notification feature flag is enabled. true
    content-scripts.js:1 DFP: Breach notification feature flag is enabled. true
    square.js:3 Initializing Cash App Pay... success! {addEventListener: ƒ, attach: ƒ, destroy: ƒ, detach: ƒ, removeEventListener: ƒ}
    square.js:3 found checkoutOneSubmit button!
    content-scripts.js:1 Content Script Bridge: Sending response back to page context: {isAllowListed: false, isProtectionEnabled: true, isScamsProtectionEnabled: true}
    content-scripts.js:1 Content Script Bridge: Unknown message type,  MSG_CHECK_DOMAIN_ALLOW_LIST_RESPONSE
    injection-tss-mv3.js:1 TSS: Received response from checkDomainAndRun: {isAllowListed: false, isProtectionEnabled: true, isScamsProtectionEnabled: true}
    injection-tss-mv3.js:1 injection-tss TSS: hosted page injected
    injection-tss-mv3.js:1 injection-tss MBTSS: Nonce:  nonce
    square.js:3 setFormSubmitButton, payment-module: square_webPay
    square.js:3 Showing "confirm", paymentMethodHandlesSubmit (true)
    square.js:3 setFormSubmitButton, enabling Review and Confirm buttons.
    square.js:3 submitFunction, on exit submitter=null
    square.js:3 Setting orderConfirmed (1), submitter (null)
    square.js:3 Form being submitted, submit_type(confirm
    square.js:3 setFormSubmitButton, payment-module: square_webPay
    square.js:3 Showing "confirm", paymentMethodHandlesSubmit (true)
    square.js:3 setFormSubmitButton, enabling Review and Confirm buttons.
    square.js:3 Form checked, passed (true)
    square.js:3 Deferring form submittal to the currently-selected payment method.
    Not sure what else I could provide to help track it down.
    Hi there. I figured out what was the block, just had to add two lines of Javascript to the module. All good!

  3. #2983
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,897
    Plugin Contributions
    96

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by nicksab View Post
    Not sure why this <div> was added into the new responsive classic template. It only contains "margin" in the css which may or may not contribute to the "shrinked" display on desktop.


    unfortunately, ZC developer tool kit is not coming with anything on class'layout'.

    Is there a sample site that use OPC? It would be great to be able to compare the original OPC behavior on a standard ZC site.

    Thank you
    Link sent via PM.

  4. #2984
    Join Date
    Jun 2012
    Posts
    481
    Plugin Contributions
    0

    Default Re: One-Page Checkout [Support Thread]

    I would like to apply a group discount to guest checkouts if the guest meets certain criteria. Current versions of ot_group_pricing allow calculating discounts for guest customers through a notifier NOTIFY_OT_GROUP_PRICING_DEDUCTION_OVERRIDE but in my case the calculations would repeat the same logic as a logged in customer who meets the criteria. Another option is provided by the NOTIFY_ZEN_IN_GUEST_CHECKOUT notifier in function zen_in_guest_checkout(). This notifier can be used to return false which will allow ot_group_pricing to calculate the discount without repeating code. Taking this latter approach seems to work, except the header has Log Out instead of Log In (or whatever text is set).

    Are there any "gotchas" with this approach? Or would it be better to use the override notifier in ot_group_pricing and repeat code?

    Thank you for any suggestions or comments.

    Dave

  5. #2985
    Join Date
    Jan 2005
    Posts
    55
    Plugin Contributions
    0

    Default Re: One-Page Checkout [Support Thread]

    Does this plugin support "Expanded Checkout"? => https://developer.paypal.com/studio/checkout/advanced

    I read like twenty pages back of this topic, watched screenshots of settings but cannot figure it out. If its not the case, is there a plugin which supports this Paypal mode? Searched the whole forum but its difficult to find people which have experience with this Paypal mode or am I not searching correctly, I wonder.

    Or maybe I am talking about Paypal Pro? https://www.zen-cart.com/showthread....y-quot-setting ? Because I'm specifically looking for that particular mode of "Auth only" payments.
    Last edited by nl2dav; 7 Oct 2025 at 05:07 PM.

  6. #2986
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,897
    Plugin Contributions
    96

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by nl2dav View Post
    Does this plugin support "Expanded Checkout"? => https://developer.paypal.com/studio/checkout/advanced

    I read like twenty pages back of this topic, watched screenshots of settings but cannot figure it out. If its not the case, is there a plugin which supports this Paypal mode? Searched the whole forum but its difficult to find people which have experience with this Paypal mode or am I not searching correctly, I wonder.

    Or maybe I am talking about Paypal Pro? https://www.zen-cart.com/showthread....y-quot-setting ? Because I'm specifically looking for that particular mode of "Auth only" payments.
    The payment module that most closely supports the "Expanded Checkout" is PayPal/RESTful (https://www.zen-cart.com/downloads.php?do=file&id=2382). That payment module will eventually support that "Expanded Checkout".

    ... and, yes, OPC interoperates with that payment module.

  7. #2987
    Join Date
    Apr 2011
    Posts
    584
    Plugin Contributions
    0

    Default Re: One-Page Checkout [Support Thread]

    Not sure if it is possible at all, but I was wondering if:

    Can the billing and shipping block be combine into one block?

    Let me try to explain. I want my customer to be "forced" to enter their billing info and their shipping info before clicking save and being sent to the next page

    Right now, customer enter their email and billing info then are being sent after clicking "save" to the payment page. The payment page has the shipping info prefilled from the billing info on the previous page. Customer have to click edit in order to change the shipping info.

    I would like to avoid the edit step by having the customer fill in the shipping info on the previous page with the billing info.

    Secondly, would it be possible to invert billing info with shipping info so customers enter the delivery address first then their billing address.

    Hope this make sense

    Thank you in advance for your suggestion and/or help

  8. #2988
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,897
    Plugin Contributions
    96

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by nicksab View Post
    Not sure if it is possible at all, but I was wondering if:

    Can the billing and shipping block be combine into one block?

    Let me try to explain. I want my customer to be "forced" to enter their billing info and their shipping info before clicking save and being sent to the next page

    Right now, customer enter their email and billing info then are being sent after clicking "save" to the payment page. The payment page has the shipping info prefilled from the billing info on the previous page. Customer have to click edit in order to change the shipping info.

    I would like to avoid the edit step by having the customer fill in the shipping info on the previous page with the billing info.

    Secondly, would it be possible to invert billing info with shipping info so customers enter the delivery address first then their billing address.

    Hope this make sense

    Thank you in advance for your suggestion and/or help
    Neither of those options is currently available. Note that the reason the billing address is requested first is that it's always needed, while the shipping address becomes optional when a customer's checkout contains only virtual products.

  9. #2989
    Join Date
    Apr 2011
    Posts
    584
    Plugin Contributions
    0

    Default Re: One-Page Checkout [Support Thread]

    Quote Originally Posted by lat9 View Post
    Neither of those options is currently available. Note that the reason the billing address is requested first is that it's always needed, while the shipping address becomes optional when a customer's checkout contains only virtual products.
    Understood.

  10. #2990
    Join Date
    Jul 2007
    Posts
    9
    Plugin Contributions
    0

    Default Re: One-Page Checkout [Support Thread]

    Hi,
    I am just programing shipping module for Packeta (Middel Europe delivery system). And I use your OPC. I need to save new filed to order whit specificaly information about delivery place of any partner of Packeta. So I have made new field in TABLE_ORDERS, but I don't have found place who add this information for store it into the DB table.
    my input name is packeta-select-branch adn need to know how to manipulate with this field to successfully save into the order table.
    Thank you for your help.
    Borek

 

 

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

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