Page 43 of 45 FirstFirst ... 334142434445 LastLast
Results 421 to 430 of 449
  1. #421
    Join Date
    Aug 2004
    Posts
    822
    Plugin Contributions
    0

    Default Re: PayPal RESTful API Payment Module

    Quote Originally Posted by chadlly2003 View Post
    PayLater Messaging- On the Shopping Cart page, the PayLater messaging should display an offer based on the total value of the items currently in the cart when the PayPal message is clicked.....

    Just like the Paypal Messaging for the Product Page. Thats works just fine

    This weekend I am going to dig into this paypal issue I am having. Not really sure why i am having these issue
    I think its could be a browser setting or Server issue - too be continued
    It seems to work for me. I went to an item we sell for $99.00. On the product page, it displays: "Pay in 4 interest-free payments of $24.75"

    I added it to my cart and on my Shopping Cart page, I see the same message: "Pay in 4 interest-free payments of $24.75."

    I'm on Firefox and running the latest version of the module (1.3.1), although I am still on ZenCart 1.5.8a.
    - Jeff

  2. #422
    Join Date
    Jan 2015
    Posts
    722
    Plugin Contributions
    1

    Default Re: PayPal RESTful API Payment Module

    Quote Originally Posted by Jeff_Mash View Post
    It seems to work for me. I went to an item we sell for $99.00. On the product page, it displays: "Pay in 4 interest-free payments of $24.75"

    I added it to my cart and on my Shopping Cart page, I see the same message: "Pay in 4 interest-free payments of $24.75."

    I'm on Firefox and running the latest version of the module (1.3.1), although I am still on ZenCart 1.5.8a.
    To get it to work for my bootstrap template i had to edit
    includes\classes\observers\auto.paypalrestful.php

    find:
    Code:
    'container' => '#shoppingCartDefault-cartTableDisplay',
    replace with
    Code:
    'container' => '#shoppingCartDefault',
    May have been my template

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

    Default Re: PayPal RESTful API Payment Module

    Quote Originally Posted by chadlly2003 View Post
    To get it to work for my bootstrap template i had to edit
    includes\classes\observers\auto.paypalrestful.php

    find:
    Code:
    'container' => '#shoppingCartDefault-cartTableDisplay',
    replace with
    Code:
    'container' => '#shoppingCartDefault',
    May have been my template
    Rather than altering the 'core' module file, you could either upgrade the PayPal/Restful module to v1.3.1 or update your copy to include these (https://github.com/lat9/paypalr/comm...fabfae43c44e06) changes. That adds a notification through which you can modify the $messagableObjects array via an observer.

    I'm not sure what modifications you've made to your version of the Bootstrap template, but that previous 'container' value works just fine for the as-shipped version of the template.

  4. #424
    Join Date
    Jan 2015
    Posts
    722
    Plugin Contributions
    1

    Default Re: PayPal RESTful API Payment Module

    Quote Originally Posted by lat9 View Post
    Rather than altering the 'core' module file, you could either upgrade the PayPal/Restful module to v1.3.1 or update your copy to include these (https://github.com/lat9/paypalr/comm...fabfae43c44e06) changes. That adds a notification through which you can modify the $messagableObjects array via an observer.

    I'm not sure what modifications you've made to your version of the Bootstrap template, but that previous 'container' value works just fine for the as-shipped version of the template.
    I am using version 1.3.1. It must be my template

  5. #425
    Join Date
    Jan 2004
    Posts
    66,444
    Plugin Contributions
    279

    Default Re: PayPal RESTful API Payment Module

    Quote Originally Posted by chadlly2003 View Post
    also getting this error forgot to post it


    Content-Security-Policy: The page’s settings blocked a JavaScript eval (script-src) from being executed because it violates the following directive: “script-src 'nonce-xxxxxxxxxxxxxxx' 'self' https://*.paypal.com https://*.paypalobjects.com https://*.googleapis.com” (Missing 'unsafe-eval')
    That's PayPal's CSP, and affects PayPal's loading of PayPal objects, from PayPal servers (where the CSP is) into the elements that PayPal creates on your page. Nothing you can do about it. I reported it to them months ago.
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  6. #426
    Join Date
    Jan 2015
    Posts
    722
    Plugin Contributions
    1

    Default Re: PayPal RESTful API Payment Module

    Quote Originally Posted by DrByte View Post
    That's PayPal's CSP, and affects PayPal's loading of PayPal objects, from PayPal servers (where the CSP is) into the elements that PayPal creates on your page. Nothing you can do about it. I reported it to them months ago.
    DrByte,

    You are 100% correct. This is what I also found to solve
    issue. But not really a solution. This is a know issue based on the research i have done


    When using the default “Remember history” setting in Firefox, the PayPal guest checkout with a credit card sometimes gets stuck in a redirect/loop during the checkout process. However, if I change the setting under Privacy & Security from “Remember history” to “Never remember history,” the guest checkout works normally without any looping.

    Based on my testing, switching to “Never remember history” seems to make Firefox behave similarly to private browsing by limiting stored session data, cookies, and history. This appears to prevent whatever session or cookie conflict is causing the checkout loop.

    This behavior seems specific to Firefox, as I have not experienced the same issue in other browsers.

    My main concern is whether a customer using the default Firefox settings might encounter the same issue when attempting to complete a transaction.

    **Note I already have some customer complain about this.

  7. #427
    Join Date
    Apr 2023
    Location
    UK
    Posts
    64
    Plugin Contributions
    0

    Default Re: PayPal RESTful API Payment Module

    Noticed that the PayPal Pay later messages that show on the shopping cart page, showing the 3 payments that could be made only work on the total of the actual shopping cart.

    The shopping cart totals in our case, are exc vat prices, and there is UK VAT to be added, as well as shipping costs on orders that are below a certain value.

    When a customer completes a purchase normally, and goes through to the final page, the VAT and shipping costs are then shown, but not sure how this would work if a customer choose the PayPal pay later option???

    My question is, if a customer completes a purchase this way will they get charged the total price including VAT and shipping costs; or will this only work on the shopping basket total value?

    Kind Regards,

    Andy
    Last edited by andy_77; 21 Mar 2026 at 05:57 PM.

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

    Default Re: PayPal RESTful API Payment Module

    Quote Originally Posted by andy_77 View Post
    Noticed that the PayPal Pay later messages that show on the shopping cart page, showing the 3 payments that could be made only work on the total of the actual shopping cart.

    The shopping cart totals in our case, are exc vat prices, and there is UK VAT to be added, as well as shipping costs on orders that are below a certain value.

    When a customer completes a purchase normally, and goes through to the final page, the VAT and shipping costs are then shown, but not sure how this would work if a customer choose the PayPal pay later option???

    My question is, if a customer completes a purchase this way will they get charged the total price including VAT and shipping costs; or will this only work on the shopping basket total value?

    Kind Regards,

    Andy
    When a customer completes a purchase with PayPal Pay Later, they get charged to total order price (which isn't available on the shopping-cart page).

  9. #429
    Join Date
    Apr 2023
    Location
    UK
    Posts
    64
    Plugin Contributions
    0

    Default Re: PayPal RESTful API Payment Module

    Thanks for confirming lat9.

    Kind Regards,

    Andy

  10. #430
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,903
    Plugin Contributions
    96

    Default Re: PayPal RESTful API Payment Module

    This support-thread is now shared by the encapsulated (https://www.zen-cart.com/downloads.php?do=file&id=2434) and non-encapsulated (https://www.zen-cart.com/downloads.php?do=file&id=2382) versions of the payment-module.

    When posting a question (or issue), please be sure to include the version of the payment-module you're using.

 

 
Page 43 of 45 FirstFirst ... 334142434445 LastLast

Similar Threads

  1. v158 UPS Shipping using RESTful/OAuth API [Support Thread]
    By lat9 in forum Addon Shipping Modules
    Replies: 187
    Last Post: 20 Apr 2026, 09:15 PM
  2. IPower & FirstData API Payment Module
    By spence in forum Addon Payment Modules
    Replies: 6
    Last Post: 7 Jul 2011, 06:33 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