Jump to content

kongondo

PW-Moderators
  • Posts

    7,379
  • Joined

  • Last visited

  • Days Won

    139

kongondo last won the day on May 16 2023

kongondo had the most liked content!

Profile Information

  • Gender
    Not Telling
  • Location
    UK

Recent Profile Visitors

34,454 profile views

kongondo's Achievements

Hero Member

Hero Member (6/6)

8.3k

Reputation

78

Community Answers

  1. Hey @Neue Rituale. Yes, Padloper is very much still being developed. Version 009 is due for a release this week (I have been dealing with a number of issues, including this one).
  2. Hi @Spinbox, Not sure I understand this one. All you have to do is make the product 'not shippable' in the product settings as shown in the screenshot below. Padloper will not apply shipping to non-shippable items. Is this what you were after? Thanks.
  3. For the present question about 1 product per user, here is example code: <?php namespace ProcessWire; $eventProductID = 2678; $customerEmail = 'wario_best@gmail.com'; /* NOTES 1. line-time -> padloper-order-line-item (order line item template) 2. product_id -> subfield in padloper_order_line_item field with product ID value 3. parent.order_customer -> Order is the parent of line items. padloper_order_customer is the field with customer details */ // $boughtTicket = $padloper->get("template=line-item, line_item.product_id={$eventProductID},parent.order_customer.email={$customerEmail}"); // if ($boughtTicket instanceof NullPage) { // // NOT YET BOUGHT TICKET // } else { // // BOUGHT TICKET ALREADY // } # OR $boughtTicketID = (int) $padloper->getRaw("template=line-item, line_item.product_id={$eventProductID},parent.order_customer.email={$customerEmail}", 'id'); if (empty($boughtTicketID)) { // NOT YET BOUGHT TICKET } else { // BOUGHT TICKET ALREADY } Let me know if you need clarification. Sorry for the delay! Thanks.
  4. Hi @Spinbox, I have hived off your shipping fee question to a new topic here:
  5. Hi @Spinbox, I have made this hookable so you have access to $response and $options. However, we have no dedicated field for saving this value. You could add a text field to your order template. Then save the latest_charge value to that field. This way, it stays together with the order and you can easily retrieve and add it to your invoices. Does this make sense or you need example code? Thanks.
  6. Hi @Spinbox, Just acknowledging that I have seen this. I'll get back to you with a detailed answer. There's various ways to approach this (all easy πŸ˜ƒ).
  7. @Spinbox You are the boss πŸ˜„! Thank you so much for the detailed response! I've heard great things about the C2. This guy has some helpful tips on screen splitting (PowerToys FancyZones, Aquasnap and Groupy). Was 2x 1080p your previous setup? Thanks again for the detailed answers!
  8. Hi @sebibu, Yes. I am hoping to do so soon πŸ˜ƒ. I'll post an update later this week. Yes, sorry, this (see bit about shop):
  9. https://www.cognition-labs.com/introducing-devin Well I guess that's it then. It was nice riding with you folks. I am out...πŸ˜’ Oh, wait a minute. There's still hope. I just need to learn ML... πŸ˜ƒ
  10. Thanks for looking into this. Looks like they gave a response for an 8K TV πŸ˜„.
  11. Thanks. It was one of the first ones I watched πŸ˜„. I've watched at least a dozen, maybe more. I have watched some that are like a series...now, 6 months later, 2 years, later, etc! Some people have gone back to PC monitors, others have stuck it out, others have gone for smaller TVs, etc. Like you said, there's quite a lot of factors to take into account as well as end use of the thing. Gamers, for instance, seem to like the LG C series a lot.
  12. Anyone using a 4K TV as a computer monitor? What has your experience been? Primary use would be coding and video editing (not gaming or graphics or for smart TV features). 43 inch, maybe LED or QLED (not OLED). What I've found out so far: Distance from screen! Anything bigger than 50 inch is asking for trouble (ergonomics). QLED best for bright rooms. OLED best for darker rooms but... OLED burn-in! and pricey! Eye strain + possible headaches (see #1). Refresh rate (not important for coding?). Auto dimming. Font aliasing (reverse RGB to BGR if possible). One big screen might be better than two smaller ones (central focal point) - YMMV! Thoughts? Thanks.
  13. Hi everyone. Padloper 009 is ready! The release has been delayed by issues with my site. It is currently offline as I work on upgrading it. I hit a number of issues which I am currently resolving. I am hoping this won't extend beyond two weeks. I request your patience please, thanks. Best.
  14. November 2023 (version 1.85) Floating editor windows Finally this πŸ‘†!
  15. Working on the installer (to handle the new features). I'm hoping to finish by next week and release 009 beta. Hopefully we are in for a Christmas treat πŸ˜„.
Γ—
Γ—
  • Create New...