Page 39 of 42 FirstFirst ... 293738394041 ... LastLast
Results 381 to 390 of 417
  1. #381
    Join Date
    Jan 2015
    Posts
    681
    Plugin Contributions
    1

    Default Re: PayPal RESTful API Payment Module

    zencart 2.1
    opc

    i am testing the PayPal RESTful API Payment Module on my localhost.

    For some reason I am not seeing the pay later button. I do see the paypal button

    I did read somewhere that it wont appear on a testing server. Is that true. Am I missing a step?

  2. #382
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,775
    Plugin Contributions
    95

    Default Re: PayPal RESTful API Payment Module

    Quote Originally Posted by chadlly2003 View Post
    zencart 2.1
    opc

    i am testing the PayPal RESTful API Payment Module on my localhost.

    For some reason I am not seeing the pay later button. I do see the paypal button

    I did read somewhere that it wont appear on a testing server. Is that true. Am I missing a step?
    You won't see the Pay Later button on the Zen Cart side, just the "PayPal" button. Once you navigate to your PayPal account, you can choose to pay via Pay Later.

  3. #383
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,654
    Plugin Contributions
    11

    Default Re: PayPal RESTful API Payment Module

    With a PayPal business account and the proper PayLater Messaging settings in the mod itself, the Pay in 4 option will show up in Checkout, the Shopping Cart, Product Pages, and Product Listing/Search results depending on which ones you select.

    Clicking on the learn more results in a pop-up explaining the cost to the customer.

    As lat9 stated, the actual ability to select it does not show up until the customer selects PayPal and clicks on Confirm Order.

    Even then, if the customer is considered a poor risk, the option will not be given to them.
    Last edited by dbltoe; 18 Feb 2026 at 02:26 AM.
    A little help with colors.
    myZenCartHost.com - Zen Cart Certified, PCI Compatible Hosting by JEANDRET
    Free SSL & Domain with semi-annual and longer hosting. Updating 1.5.2 and Up.

  4. #384
    Join Date
    Aug 2004
    Posts
    811
    Plugin Contributions
    0

    Default Re: PayPal RESTful API Payment Module

    Quote Originally Posted by dbltoe View Post
    ....and the proper PayLater Messaging settings in the mod itself, the Pay in 4 option will show up in Checkout, the Shopping Cart, Product Pages, and Product Listing/Search results depending on which ones you select.
    Which mod is that where you edit the Pay Later Messaging settings? I didn't see that in the Paypal Restful mod.

    This is definitely something I'd like to implement on my own site. I remember seeing steps (provided by PayPal) on how to integrate that into your webpage, but if you're saying it's something that can be enabled via ZenCart module settings, I'd like to know.
    - Jeff

  5. #385
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,654
    Plugin Contributions
    11

    Default Re: PayPal RESTful API Payment Module

    Have you loaded the 1.3.0 version?

    Edit the settings and scroll down to PayLater Messaging.

    Click image for larger version. 

Name:	PayLater.png 
Views:	46 
Size:	32.5 KB 
ID:	21170
    A little help with colors.
    myZenCartHost.com - Zen Cart Certified, PCI Compatible Hosting by JEANDRET
    Free SSL & Domain with semi-annual and longer hosting. Updating 1.5.2 and Up.

  6. #386
    Join Date
    Aug 2004
    Posts
    811
    Plugin Contributions
    0

    Default Re: PayPal RESTful API Payment Module

    Quote Originally Posted by dbltoe View Post
    Have you loaded the 1.3.0 version?
    Oh snap, I thought I was running the latest and failed to see the new version! Thanks for pointing that out. Can't wait to try this new feature.
    - Jeff

  7. #387
    Join Date
    Jan 2015
    Posts
    681
    Plugin Contributions
    1

    Default Re: PayPal RESTful API Payment Module

    Only way i see PayLater is when i go through the checkout process click paypal and confirm payment. Than i am in the paypal and click on pay later which is not so easy to get to.


    This is exactly what I am looking for. But seem to be missing something.
    When enabled, it will show the lower installment-based pricing for the presented product or cart amount.

  8. #388
    Join Date
    Jan 2015
    Posts
    681
    Plugin Contributions
    1

    Default Re: PayPal RESTful API Payment Module

    the only way i can get the message to display.

    Add this
    path: includes\templates\bootstrap\common\html_header.php

    Code:
    <script src="https://www.paypal.com/sdk/js?client-id=xxxxxxxxxxxx-xxxxxxxx=USD&intent=capture&components=buttons,messages&enable-funding=paylater"></script>
    includes\templates\your_template\templates\tpl_product_info_display.php

    add this **note i use special price not product_price

    Code:
    <div 
      data-pp-message
      data-pp-style-layout="text"
      data-pp-style-logo-type="inline"
      data-pp-style-text-color="black"
      data-pp-amount="<?php echo zen_get_products_special_price($_GET['products_id']); ?>">
    </div>
    result
    Click image for larger version. 

Name:	Screenshot 2026-02-20 190635.jpg 
Views:	23 
Size:	14.1 KB 
ID:	21173

  9. #389
    Join Date
    Jan 2015
    Posts
    681
    Plugin Contributions
    1

    Default Re: PayPal RESTful API Payment Module

    on the product info page
    just add this

    Code:
    <!-- paypal buy now message  -->
    <div class="" 
      data-pp-message
      data-pp-style-layout="text"
      data-pp-style-logo-type="inline"
      data-pp-style-text-color="black"
      data-pp-amount="<?php echo zen_get_products_special_price($_GET['products_id']); ?>">
    </div>
    <!-- eof paypal buy now message  -->

    shopping cart
    Code:
    <!-- paypal buy now message  -->
    <div class=""
      data-pp-message
      data-pp-style-layout="text"
      data-pp-style-logo-type="inline"
      data-pp-style-text-color="black"
      data-pp-amount="<?php echo $_SESSION['cart']->show_total(); ?>">
    </div>
    <!-- eof paypal buy now message  -->
    Please omit the header entry...

    Seems to work

  10. #390
    Join Date
    Jan 2015
    Posts
    681
    Plugin Contributions
    1

    Default Re: PayPal RESTful API Payment Module

    I have a question.... I noticed that sometimes when you check out and the paypal window popup up. If I click on guest checkout and put an email address in it just keeps spinning. This happens a lot but not all the time. Is this a paypal issue or a zencart issue.

    Click image for larger version. 

Name:	Screenshot 2026-02-25 213240.jpg 
Views:	24 
Size:	24.9 KB 
ID:	21181

 

 
Page 39 of 42 FirstFirst ... 293738394041 ... LastLast

Similar Threads

  1. v158 UPS Shipping using RESTful/OAuth API [Support Thread]
    By lat9 in forum Addon Shipping Modules
    Replies: 180
    Last Post: 18 Feb 2026, 11:38 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