Take Paypal Payments On Our Site - Django Wednesdays ECommerce 47

Поделиться
HTML-код
  • Опубликовано: 11 сен 2024
  • In this video we'll set up Paypal Payments on our Django Ecommerce site.
    Accepting Paypal on our site is important, and easier than you may think!
    We'll implement the Django-Paypal library in our app and set it up in this video.

Комментарии • 34

  • @Codemycom
    @Codemycom  Месяц назад +1

    Watch Django Wednesdays Ecommerce Playlist Subscribe To My RUclips Channel:
    bit.ly/3OBQJfN bit.ly/2IGzvOR
    See More At: Join My Facebook Group:
    Codemy.com bit.ly/2GFmOBz
    Learn to Code at Codemy.com Buy a Codemy T-Shirt!
    Take 50% off with coupon code: youtube50 bit.ly/2VC9WUN
    Get The Code
    bit.ly/47xAhWJ

  • @AlphadoInk
    @AlphadoInk Месяц назад

    Thank you very much, John Elder! I followed your instructions without any issues. You're the best Python Django developer by far. Congratulations on your wedding!

  • @just5559
    @just5559 Месяц назад +1

    Yippy! Hope this series does continue

    • @Codemycom
      @Codemycom  Месяц назад +4

      There's always a django wednesday :-p

  • @user-dp5ye2tp7d
    @user-dp5ye2tp7d Месяц назад +2

    very beatiful , Thank you so so much

    • @Codemycom
      @Codemycom  Месяц назад +1

      Glad you enjoyed it!

  • @youcefboutiche9496
    @youcefboutiche9496 Месяц назад

    Thank you so much for this video john. I liked when you sad USA at 24:00 XD. I love United state ♥

    • @Codemycom
      @Codemycom  Месяц назад

      Glad you enjoyed the video!

  • @jumpmanlavine5024
    @jumpmanlavine5024 Месяц назад

    Great video, sir!

  • @MuhammadAliAbbasKhan-uk2sk
    @MuhammadAliAbbasKhan-uk2sk Месяц назад

    very Good Videos Sir . I have done your flask course and now this django course .Are you gonna make more flask videos in future . Also Start Fast API

  • @TheLummen.
    @TheLummen. Месяц назад

    So when I try to cancel the order it shows me the business email instead of the app name. Any suggestions on how fix this ?

  • @silvanonatalizi2579
    @silvanonatalizi2579 Месяц назад

    Very helpful, Thank you very much

  • @anjithaashokan2026
    @anjithaashokan2026 Месяц назад +2

    next video please

    • @Codemycom
      @Codemycom  Месяц назад +2

      Got married, more videos next week.

  • @hasibulalamprionto2010
    @hasibulalamprionto2010 Месяц назад

    Hey John, we need a tutorial on Python Flet!!

  • @michaelraymondlegg210
    @michaelraymondlegg210 23 дня назад

    this is great but then what is the point of the billing info at the bottom?

    • @Codemycom
      @Codemycom  21 день назад

      later when we add stripe

  • @xtoggler4930
    @xtoggler4930 8 дней назад

    Nice video ! It worked out for me, but the credt card option did not appear to me, insted it tells me to create an account, can you help me?

    • @Codemycom
      @Codemycom  7 дней назад

      If it tells you to create an account...create an account lol why haven't you already?

  • @TheLummen.
    @TheLummen. Месяц назад

    Let's gooo !

  • @DanteDes-z4i
    @DanteDes-z4i Месяц назад

    How about a comment section?

  • @johnny-d5j
    @johnny-d5j Месяц назад

    ive gotten "Reverse for 'paypal-ipn' not found. 'paypal-ipn' is not a valid view function or pattern name" and im trying to fifure out what could be the issue

    • @Codemycom
      @Codemycom  Месяц назад

      Did you forget to add the path('paypal', include("paypal.standard.ipn.urls")), to urls.py? Did you forget to import include at the top of urls.py?

    • @spyderrex
      @spyderrex Месяц назад +1

      I had the same problem. For me I fixed it by adding the namespace "payment" to the "paypal-ipn" in the reverse function in the view. So, instead of "paypal-ipn" say "payment:paypal-ipn". And do the same thing for the other two in the dictionary.

    • @spyderrex
      @spyderrex Месяц назад +1

      Add "payment" namespace to the reverse function. So, instead of "paypal-ipn" put "payment:paypal-ipn". And do the same thing with the other two (success and failure).

    • @spyderrex
      @spyderrex Месяц назад

      ​@@CodemycomI fixed it by adding the payment namespace to the paypal-ipn in the reverse function. So, "payment:paypal-ipn". Also for the success and failure.

    • @johnny-d5j
      @johnny-d5j Месяц назад

      @@spyderrex thank you thats exactly what i needed to do.