Customer Sessions Shopping Cart - Django Wednesdays ECommerce 12

Поделиться
HTML-код
  • Опубликовано: 16 сен 2024

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

  • @Codemycom
    @Codemycom  10 месяцев назад

    ▶ 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

  • @namdarcs
    @namdarcs 10 месяцев назад +1

    All caught up now :) Thanks again John I appreciate all you are showing here and all the other video you have added!!!😀

  • @alimalek9362
    @alimalek9362 28 дней назад

    Perfect same as always thank you so much

  • @19taurus79
    @19taurus79 10 месяцев назад +1

    Hi, John. I suggest to redesign the back button in the product card. Right now it links to the home page, and if you are on the category page it is not very convenient. I propose to make it like this : " "

    • @DavidBuckley12345
      @DavidBuckley12345 8 месяцев назад

      Sir, you are indeed a lifesaver, that tip is gold and I am just remaking some old projects of mine with this onclick functionality. I used to instead to rely on request.META.HTTP_REFERER, but your solution is way better and cleaner!

  • @technologybysrk8419
    @technologybysrk8419 10 месяцев назад

    Just finished #12, Thank you
    Waiting for #13

  • @shallobboy
    @shallobboy 10 месяцев назад +1

    Hey John, nice content, i wanted to ask you if you'll make a video in this ecommerce serie on how to handle payments

    • @Codemycom
      @Codemycom  10 месяцев назад +1

      Probably

    • @shallobboy
      @shallobboy 10 месяцев назад

      @@Codemycom thank god, i’ve been stuck on it for ages

  • @MrMuuur
    @MrMuuur 7 месяцев назад

    Thanks a lot, John!

  • @AraratAleksanyan-n8l
    @AraratAleksanyan-n8l 10 месяцев назад +1

    Always forgot to like video, but after 'SMASH LIKE' i off fullscreen video to like You!

    • @Codemycom
      @Codemycom  10 месяцев назад +1

      Awesome, thanks!

  • @khushaljangid2685
    @khushaljangid2685 7 месяцев назад

    Well this is a pretty clean implementation of a Shopping cart, but my only concern is that if a user logs out or if the session is reset, The contents of the cart will be lost !

    • @Codemycom
      @Codemycom  7 месяцев назад +1

      We address that in the next video.

  • @MyMusicWorld786
    @MyMusicWorld786 5 месяцев назад

    Sir sorry to bother you once again but what if the person login with different device will items be there..Thanks for your good work

    • @Codemycom
      @Codemycom  5 месяцев назад +1

      No, of course not. Later in the playlist we set up logged in user saved sessions. Continue watching.

  • @TotoyBabes
    @TotoyBabes 5 месяцев назад

    hello sir good day can i ask ? what if i dont want to put the session in the shell ? is there a problem if i dont sir? thnk u for reading this sir and thnks to your video too ,,, salamat po sir

    • @Codemycom
      @Codemycom  5 месяцев назад +1

      Sorry I don't know what you mean. The session isn't in the shell, we just use the shell to look at it.

    • @TotoyBabes
      @TotoyBabes 5 месяцев назад

      @@Codemycom good day to sir , sorry sir i mean the id session , and i dont know how it works sir, am just a new in coding , am learning alot in ur video sir , thnks

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

    Guys! Just be careful. The HTML code in almost all the files is bad. He adds this 10 times and it looks very unprofessional so BE CAREFUL when using it as your resume! This is not a GOOD HTML CODE

  • @MrKrabbs2009
    @MrKrabbs2009 6 месяцев назад

    I was just wondering how can I make a thing(in my case all Categories to make the forloop for the dropdown of categories) appear in all views. I googled but I guess my wording was wrong and I just passed {'categories':Categories.objects.all()} in all views. Well not anymore, I made a context processor with all the categories and it works wonders, thanks a lot!