Jump to content
thirty bees forum

wakabayashi

Silver member
  • Posts

    2,040
  • Joined

  • Last visited

  • Days Won

    176

Everything posted by wakabayashi

  1. Its completly sick, what you already achieved without writting code your own 😅
  2. @vincentdenkspel amazing! 😏 Don't forget: be careful. I would always recommend to work with testshops at least. Also try to learn some basics (in case you don't know anything right now). But in general this so cool. Keep going! @30knees This was my first guess too. But we might be wrong. It could actually be, that thirty bees is a winner of this. We have an open architecture here. It's accessible for all AI tools. And the system itself was built for extensions/moduls.
  3. It's a very interesting discussion here. I can understand both positions. It's really a chicken-egg game. But imo there is a huge game changer: AI. It has become way more simple and fast to write code. I am also not aware of the plans/roadmap of TB. But with the new AI tools, it's even possible for no coders to start modifying some stuff. Ofc it's always better, if you have some basic coding knowledge, otherwise you might mess things up. Even if you aren't brave enough to use AI yourself: I would guess, that prices for a custom module will come down a lot. @datakick what is your experience with AI these days? I would say it has speed up my developing work about 3-5 times. It's hard to tell, but it's for sure huge. The first time I have the feeling, that my todo-list may become shorter 🫣
  4. Wtf. If this statement is true... 😵 Probably they are afraid of lawsuit against them.
  5. Is this all information they gave? No technical details?
  6. It's long ago, that I asked for this. But a few days ago, I finally used this solution and it works as described by @datakick 😏
  7. I am not sure... Is this a bug report or an explanation? Do you have uploaded a thumb image for packets? Cause you are right, these are exactly the images we are talking about "thumb".
  8. In categories you have two different types of images: \thumb is the preview image.
  9. What does this mean? Unfortunately I didn't find time to participate a lot on github recently. Hopefully I can change it in 2026. I have so much open Todos 😑 But AI is helping to get faster at solving stuff with code. 😊
  10. Yeah we received a few orders from chatgpt in the past. But the sales don't happen directly there. We just se the utm parameter when a customer clicked there.
  11. My search console is still full of entries, cause I block the urls with robots.txt. I was now looking into the source code and I believe, there is a simple solution. Just install the module "tbdetectcrawler". It will stop adding this trigger urls to crawlers.
  12. Either you haven't show us the important results or your problem is something different. Aren't there any numbers in red with high "ms" or "Mb"? Cause from the screenshot you show, nothing is slow.
  13. You should go to the performance tab and switch profiling on. Then refresh the slow backoffice page and scroll down. There you will have the information what is loading slowly. You can also post a screenshot here, if you have difficulties to interpretate the information. IMPORTANT: after quick test you need to deactivate this setting asap. Cause this profiling information is also loading in your FrontOffice shop. So your customer would see it as well.
  14. wakabayashi

    Testing TB

    Thanks! Github search sucks. I search there for "view" it doesn't show the "blockviewd" repository... I looked only 5 minutes in the code, but it looks sensible. I see, that tb is reading the cookie and afterwards loading the needed products.
  15. wakabayashi

    Testing TB

    The thread in prestashop forum is quite interesting. I am now with 50k of products and notice here and there some performance issues. But these are almost always issues on my own code. With 3.4 million products you will find even much more such stuff. But these issues are often not relevant, if you have only 1k products. In my expierence the perfomance issues came to 90% from modules and maybe 10% from bad hardware or missconfiguration. What is the name of the corresponding thirtybees module?
  16. The core is far away of handling this in a clean way. It's not even clear when the invoice will be sent, as this is coupled with order states. In addition "invoice" isn't exactly the same in each country. That makes it very hard for the core to find a "fits-all-solution". For a single shop it's much easier to find a solution with a few overrides. But if you need such customizations you need php knowledge. An additional column with a dirty Mail::send() override might be enough.
  17. Are the files on your server in the folder? I would surely try deleting all caches. But the fact that /themes/niara/js/vendor/picturefill.min.js is not found, sounds like the file is missing.
  18. Sorry, I didn't write my question clear enough. With hypothetical I meant something different. I wanted to ask, if you have some specific Dev in mind? Cause for me it's not so easy to find someone similair to @datakick. Of course there are some Prestashop devs out there, who would like to get the job. But I need someone who is really a powerful dev, that writes clean, maintanable and secure code.
  19. This is just hypothetical, right? Or do you have any powerful prestashop/thirtybees in mind? Cause my company is steadily growing and I am considering hiring a full time dev. If I can find a suitable person. He would ofc also contribute to the core.
  20. I believe the project is as death as the last 5 times, this was asked 😉 But you are right, @datakick is absent for some time now. I guess it's just holidays/recovery 😊
  21. Sorry ich habe das Thema total vergessen. Das wurde in meinem Shop mittlerweile auch ganz anders gelöst. Ich erachte es als sehr sinnvoll solche Produkte zurückzustellen. Wir berechnen daher bei uns einen score wo verschiedene Parameter entscheiden, wie die beste Reihenfolge ist. Aber ok das ist ein anderes Thema. Zur Lösung: der Core Code ist hier wirklich hässlich... Du verwendest auf deinem Shop das Filter Modul. Deshalb muss man die Lösung da suchen. Das Module heisst blocklayered. Suche die Datei blocklayered.php. Es gibt dort eine Funktion: public function getProducts($selected_filters, &$products, &$nb_products, &$p, &$n, &$pages_nb, &$start, &$stop, &$range) Die musst du bearbeiten... Suche die Zeile: m.name manufacturer_name, Füge danach folgendes ein: IF(stock.quantity>0,1,0) AS sort_helper, Nun füge zudem nach "ORDER BY" folgendes ein: sort_helper DESC, Nun sollte es funktionieren. Hier noch ein kleiner Screenshot: Funktioniert das so für dich? Ich konnte diesen Code nicht intensiv testen, da meine Shops nicht dieses Modul nutzen. ACHTUNG: bei jedem Update dieses Modul wirst du das wieder anpassen müssen.
  22. Thirty bees is still alive, that is the only thing that counts for me 😊 A lot of great things are going on github. It would be wishful, if we could clone Datakick somewow, but might be difficult 🫠
  23. Damn I wasted now like 2 hours to understand why the core updater is suddenly no more working 🤦‍♂️ Please note: atm you can't have the setting "Server PHP version" with PHP 8.4. You have to select 8.3 🫣
  24. I am now on bleeding edge and php 8.4. My first impression is, that it works pretty well beside deprecation warnings. I will keep you updated 👍
  25. Thanks you very much. It works now 👍 This feature will be so great, love it. Especially, if we can save presets. 🤩 As I had this functionality in mind too. I wonder about something. Why do you implement the new $this->filters_list? I wanted to add this functionality $this->fields_list, then I would also allow an employee to select the columns he wants to display. He could then save the columns and also filters. IMO this would help merchants to customize their list to their needs even further. They can just hide unnecessary stuff and as a dev we can add more columns, without having to think a lot about "is it too much". A module like orderlistcarriers would just be obsolete with a few lines of code. Also your example with the customer email would be good. Maybe some merchants would like to see in orders list!? I hope you get my proposal. Maybe I don't see the drawbacks!? 😊
×
×
  • Create New...