Jump to content
thirty bees forum

wakabayashi

Silver member
  • Posts

    2,011
  • Joined

  • Last visited

  • Days Won

    168

Everything posted by wakabayashi

  1. wakabayashi

    Goodbye

    Hello @datakick It's really sad to read this 😭 I don't know, what this means for the project (maybe the end), but I understand your decision. It's really not up to you alone, to drive this project forward. I want to thank you a lot for your work/time, that you invested for free! I learnt so much from you! 👍 Are you leaving ecommerce as a whole or are you still coding modules and doing customize jobs? Regards Emanuel
  2. Hm I checked the url and understand now, that you don't even see the login page. I thought you will get a white screen after you try to login. Maybe this thread from ps forum can help you: https://www.prestashop.com/forums/topic/592769-admin-login-blank-page/
  3. Try to delete your cookies. This could help!
  4. Thanks for the warm words regarding one of my shops 🙂 Interesting because, since a few weeks I am no more that convinced, that my site is super fast or well designed ^^ But ok maybe I am just too ambitious. I am thinking of completly rewrite "my" theme. I believe, there is still room for improvements 🙂 Actually @Traumflug said everything, that is relevant: Get a serious hosting package. We have a dedicated server (unmanaged) and pay 70$/month. If you can't afford this, you have probably more important things to improve, than the loading time. Technically I use css/js caching and APC server side caching. Full Page Cache is completly deactived. Deactivate css and js caching in Bo. Use browser console and check which files are loaded. How big are they? Are they really needed? Check your Content. Do you really need the tags on left column? You really need to promote your local store there? For external modules, check them with profiling in BO, how much they slow down... Defer images, if they are below the fold In general I would say, that the page loading time is one of the strengths of thirty bees.
  5. @Chandra oh ok interesting. As I said this is just my own "solution". In my case it's wanted, that customer can order 5, if we have only 4 left. But he shouldn't been able to order 1 if 0 is left. I know very strange 🤣
  6. @datakick your are right, this doesn't prevent, if you are at payment. But in our case 9 out of 10 times the issue was like that: customer 1 places product x to cart customer 1 is making a pizza 🍕 customer 2 places product x to cart customer 2 orders product x product x is no more available two hours later customer 1 has eaten his pizza and orders product x This case is now prevented. For now we have the issue only left if some customer are ordering inside like 5 minutes product x. My code from above is only a few days old, since we had the "pizza" case a lot in these corona times.
  7. I am not using the inbuilt setting, so I don't know, how it works. But I am using this on checkout: // Check if stock of a product is still available (it could be ordered in the meantime) public function initContent() { $products_in_cart = $this->context->cart->getProducts(); $deleted_products = array(); foreach ($products_in_cart as $product_in_cart) { if ($product_in_cart['quantity_available']==0) { $this->context->cart->deleteProduct($product_in_cart['id_product'], $product_in_cart['id_product_attribute']); $deleted_products[] = $product_in_cart['name']; } } $this->context->smarty->assign( array( 'opc_deleted_products' => $deleted_products, ) ); parent::initContent(); } Maybe it can't help you too...
  8. I don't know where the check of this feature is. If the check is on the addToCart function, then it won't work, when the customer had it already in the cart. It goes like this: customer 1 puts product in the cart customer 2 puts product in the cart customer 1 places the order I am not sure if it's like that. This is just my assmption... Edit: Sorry that is actually your first post 😅 Is there no check on the checkout?
  9. @datakick This joke made my day 🙂
  10. Ich glaube, es wäre ein bisschen riskant, das alles in einer Schleife ablaufen zu lassen. Das Feature ist neu...
  11. Just to make sure: have you heard from "revws" module? It's developped from an active member here and it's much better than the default review module. There is a free and a paid version: https://store.getdatakick.com/en/revws-free
  12. Diese Funktion wurde nicht von Markus implementiert. Die Funktion wurde - soviel ich weiss - mit Absicht nicht eingebaut...
  13. Why can't you just import your database backup into the new database? But TBH, if you have no expierence at all with such actions, I would hire somebody.
  14. I agree with @toplakd Invoices are attached correctly in our case too.
  15. Thx a lot @toplakd and @datakick! I hope once this corona thing is a bit less severe, I can contribute again some stuff on github myself. So I really appreciate everyone, who drives this project forward 🤗
  16. Ah I finally understand how you handle it. Yeah this makes actually sense. 😊 Bad that it's not working as expected 😅 In my use case the problemlays a bit deeper, as my orders often aren't paid when the order gets placed... And you can not add an order with payment amount=0
  17. The payment value won't be updated in this case, does it?
  18. And what would you do, if you remove some products?
  19. When you change an order, you will probably also have this red warning like: The amount of payment doesn't fit the order amount.
  20. Hard to say. I can't remember any such issue. Have you tried to delete all cookies?
  21. I don't think this fix will change anything on payment amount...
  22. IMO you need to integreate APIs/Hooks for payment modules. If you edit an order, you can not just assume, that the paid value has changed. In practice there are multiple cases. Sometimes there happens a refund, sometimes the order hasn't been paid at all at this point.
  23. I am quite sure that, it is not a bug, but bad design. The ps was designed, that every order is paid during checkout. As well they are kind of expecting, that an order doesn't get changed. I know, that my answer isn't really helpful. I am voting for years, for a better way of handling this. But it's very hard to achieve. The concequences are hard to forseen. For the payment case, I believe that a payment module should call a hook, so the amount get's corrected...
  24. wakabayashi

    Shop Feedback

    You have very nice products. Love them! I just quickly checked the categories and products a bit. I believe, customized text should be improved. I would add that above addToCart Button.
×
×
  • Create New...