Jump to content
thirty bees forum

wakabayashi

Silver member
  • Posts

    1,948
  • Joined

  • Last visited

  • Days Won

    148

wakabayashi last won the day on March 15

wakabayashi had the most liked content!

5 Followers

About wakabayashi

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

wakabayashi's Achievements

Community Regular

Community Regular (8/14)

  • Very Popular Rare
  • Reacting Well Rare
  • First Post
  • Posting Machine Rare
  • Collaborator Rare

Recent Badges

668

Reputation

7

Community Answers

  1. I have similair warnings. Google is trying to crawl this controller=trigger urls. If I remember right, they are coming from the core. I added: Disallow: /*controller=trigger in robots.txt
  2. It's not a big secret, what my store is 😅 https://www.spielezar.ch But as I said. I am not making a living as coder or theme designer 😉 I can not say, why no real theme designer is doing it.
  3. I guess thats these are the numbers, where it's starting to be interesting. But how to get 500 users buying your theme? 🙂 I don't know much about the details as I am not living for designing themes. It also depends where the designer is from.
  4. That's basically what I did. I don't remember how long it took me, but surely 2-3 years (with breaks involved). For an open source project with modules/plugins it is very hard to build a good theme. There is not only design, but also a lot of technical aspects (speed, seo and so on). A lot of merchants expect a theme to be 100-200$ and then they are fine for 10 years. Imo that's no more realistic these days. I see a lot of SaaS, that have a higher pricing per month...
  5. Great! I am not yet on bleeding edge. But this sounds amazing for my purpose! Actually it's also kind of a shortcode usage 🙂
  6. Is it somehow possible to get the controller name and id_entity by throwing an url? I want something like: function getControllerAndId($url) { // Use $url somewow $dispatcher->getController(); } I want to use this in a module... The idea is to recognize posted urls by customers in FrontOffice as product links and replace them. For example: www.domain.ch/category/productXY I want: Controller=ProductController id_product=352
  7. This is a little confusing to me. Once there is jpg and once webp 🥵 But ok, as we can drop it anyway, we won't have this issue in future 👍
  8. I went live my branch of consistent webp images. In general it works well. But I just found another big issue, but I want someone to confirm. I need someone, that uses webp and google search console. Please open an url in google search console and check the html of the crawled page. Is there webp or jpg used? @datakick Do you think we need to keep this browserSupport? https://github.com/thirtybees/thirtybees/blob/e6ca6b43d5235c80c1ebeff087ece88fd4541c83/classes/ImageManager.php#L881 In alot of usages it causes troubles. You have to adjust all ajax calls for webp support and it seems that crawlers might fall to it.
  9. @datakick I have just installed consitency module and used it a little. Very useful! But I noticed some "issues": Carrier with ID 28 is not associated with any shops. This carrier is not showing up for me in BO. Not surprising as the column deleted equals 1. Image with ID 4284 is not associated with any shops. This message is correct, but it would be helpful to show the id_product as well. Otherwise a newbie can't fix it IMO. Don't forget to add alternative images extension in the image test, once we offer it. A few days ago I have switched my live shop to webp. 😋
  10. @datakick thanks a lot for this detailed answer! I was aware of the table issue, but I guess I understood the message wrong. It's not about an exception handler? It's about registering displayLeftColumn and not having the function hookDisplayLeftColumn() right? I can tell you, that this issue arises in my cases differently, than you maybe expected. This modules had this hooks registered. But then I removed them. Does the inconsistency check happen during installing/updating process? Cause for some modules I just deleted the function without doing a new installation. Maybe this is a problem? I guess I can just unhook this module under "positions" or calling unregisterHook() ... Oh I will test your consistency module. 😋 I am already a big fan of the collect logs module. IMO it would be much more helpful, if such warnings would be added to collect logs instead of the normal log. In the normal log you must be Sherlook Holmes to distingue between logs and issues.
  11. I am not sure, how many of you are aware, that the core logs can slow down your shop drastically. I am optimizing my site these days and kind of analyze all chains of code. I suddenly noticed, that a huge table (215k rows in my case) of "ps_log" slowed my shop for around 300ms. After truncating this table I have now kind of 500ms instead of 800ms. This is kind of sick 🙃 The reason is mainly this one: https://github.com/thirtybees/thirtybees/blob/main/classes/Hook.php#L564
  12. Yes that sounds logical. Cause also here: the warehouse is not the same. Do you want the split up? And why do you have some entries with asm and some without?
  13. Every year again 😅 I finally understood what in my case brought up this order splitting. It's missing entries in warehouse_product_location table. It happened for me, if we are adding combinations or deleting combinations. Not sure, if it's a bug in core or if it came to bad overrides on my side. Maybe someone else can confirm, if he has this issue too due to combinations.
  14. The issue is in public function isParentCategoryAvailable($idShop) in Category Class. IMO it doesn't join the category correctly. I have 3 shops. (id_shop=3 is the default one). But in ps_category I have some entries, that have id_shop_default=1 (don't ask me how I can even controll this as an user). In this case isParentCategoryAvailable($idShop) returns false, even if a category is associated to shop with id_shop=3. https://github.com/thirtybees/thirtybees/blob/main/classes/Category.php#L2427 Should be changed to: ->join(Shop::addSqlAssociation('category', 'c', true, null, true)) This is a very edge case, which explains why I am probably the only one suffering from it 🙄
×
×
  • Create New...