Jump to content
thirty bees forum

wakabayashi

Silver member
  • Posts

    2,027
  • Joined

  • Last visited

  • Days Won

    175

Everything posted by wakabayashi

  1. Who of you is already using the 1.3 version? How does it work out for you? 🙂
  2. Combinations are different (physical) products. Imagine you sell a t-shirt in different colors. Like: Red, Blue, Green ... Multiple features is (always) the same product. Imagine you want to list the material your t-shirt contains. Like: 80% cotton, 10% polyester, 5% bla ... So combinations means that a customer needs to select it, while ordering (otherwise you don't know what to ship). Combinations can also have impact on a price. For multiple features this is both not relevant...
  3. Did your list always looked that "old fashioned"? Or was it like that before: What is your browser console saying?
  4. Ok for my case I understand the problem. But not for yours. I just noticed that there is warning when deleting a critical category: Are you using multistore? Can you please check your ps_configuration mysql table for 'PS_HOME_CATEGORY' and 'PS_ROOT_CATEGORY'? Is it the same value? Is it even equal 1?
  5. I have something similair too 😂 Ok seriously it's not fun at all, but I named my category like this: It's warning to never delete "Fake" category. Maybe it's the same issue. I guess it's somehow kind of a root category. Atm I don't have time to search for the bug. I agree with @nickz check your backup. Check, what id the category had and add it again. You can add a normal category and then just try to change the id in the database.
  6. TB is an improved and stable version of 1.6. But let's be honest, if we all look at all bugs and bad desings PS 1.6 has, TB could maybe solve 10% of it and 90% is still left. The Dev Team is very small, but IMO very powerful. The few people working on code here, know the system pretty well. If you deliver a PR on github with the fix, it will sooner or later be implemented. The rule is basically, that another Dev needs to check the PR first. Yeah you are right. But this sentence is not specific. What are you talking exactly about? I am using multistore since years. It has it's bugs, but you can work with it. Did the same here. But why using other coding language? I prefer to write everything in PHP, so it could be merged in future. Hard to say. Taxes were improved. There were multiple bugs, especially about rounding too early... Right. And we didn't make an serious improvement on this. Often such things can't be changed so easily, because it would break some modules/themes. I don't like it either, but it doesn't harm my shop much. This influences my shop probably for 0.00001% if it will be sucessful or not. I think, you know what I mean. Why don't you just set up a test TB and play a bit around? Obviously you can also check github, to see what happened in the past.
  7. Never heard of it. A screenshot would surely help a bit. Also what is the exact error message? "too many entries" leads to no result in my quick fulltext search of tb files...
  8. Maybe you should look into database. There are some informations stored there...
  9. In this case we went for a JS solution. <script> document.querySelector('#buy_block').addEventListener("click", function(event) { updateLabelsSelectedClass(); }); updateLabelsSelectedClass(); function updateLabelsSelectedClass() { var attributes_options = document.querySelectorAll('#attributes input'); if (attributes_options) { attributes_options.forEach(function (element) { var label = element.closest('li').querySelector('label'); if (label) { (element.checked) ? label.classList.add('labelSelected') : label.classList.remove('labelSelected'); } }) } } </script> It's not the cleanest solution, but it seems to work out well. In general this something that should be done in the theme and not by a module hack 🙂
  10. Try this selector: #attributes .attribute_list li label:focus, #attributes .attribute_list li label:hover, #attributes .attribute_list li label:active, #attributes input[type="radio"]:checked+label, #attributes .attribute_list li div.radio span.checked+label Edit: thats probably not working. Need to rethink.
  11. Your html markup is not the same on mobile as on desktop. It seems, that you change the markup on desktop version by some Javascript. On desktop: <li class=""> <div class="radio" id="uniform-26" style="display: none;"><span class="checked"><input type="radio" class="attribute_radio" name="group_7" id="26" value="26" checked="checked"></span></div> <label for="26" class="radio_label">Right </label></li> On mobile: <li class=""> <input type="radio" class="attribute_radio" name="group_7" id="26" value="26" checked="checked"> <label for="26" class="radio_label">Right </label></li> Do you know from where this manipluation comes from? Maybe it's your theme. You could either change the CSS or try to resolve the manipulation. First is probably easier, second is probaly cleaner 🙂
  12. Is this site online? I guess, it would be much easier to help, if we could test that with the source code. If the class "checked" is set, it should be possible to style just with CSS IMO. But maybe I didn't get the problem correct.
  13. The thing you are talking about is named "alias". For each table you can and should specify it. But you do that in each query and you can chose whatever alias you want. This is needed if two tables have the same column_name. Imagine if you select all categoroies with all their products. Select name would not tell, if you want the product name or the category name. Thats why you would use something like Select c.name AS category_name, p.name AS product_name FROM category_table AS c JOIN product_table AS p on p.id_category=c.id_category Note: This is just an abstract example. "AS" is normally not needed, but it makes things much more clear for beginners.
  14. This account is here, to place some backlinks. Exactly what the thread is asking 🤣
  15. @nickz The thing you are talking about, is real, but mainly for simple question: how high is the eiffel tower? What time is it in cleveland right now? Google will answer this questions directly in the search results and the content creator don't get the traffic. It can be problematic for newssites too, but for ecommerce, that is really not a big deal right now. What should a visitor do? If he wants to buy something he has to visit some shops 🙂
  16. Any arguments for this?
  17. I don't understand your problem. Maybe you should post a sample query, so we can understand what you mean with "prefix".
  18. I was working very hard on it and it looked quite promising. But last two months I haven't had time to work on. End of the year I never have time for such big projects due to christmas sale. I will go on in spring. I hope, that I can launch my new theme in summer/autumn 2022.
  19. I believe there is some misunderstanding. Are you aware, that you can set the BO design in BO? Just go to the employees settings.
  20. Isn't that, what TB did the last years? There were no huge changes. Technical Stack is almost the same as in PS 1.6. Acutally I see it the other way. I wish we could drive the project more forward, since ecommerce changes fastly and is very competitive.
  21. It's hard for me to understand, what you are talking about? Do I get right, that you don't want to update to 1.3 for some reason?
  22. This is very likely to be a spamming account. Often they edit their post a few days after and try to place a backlink to their website. It's always very supicious if somebody has less than 10 posts and answers to an old post. Especially if it's about SEO ^^
  23. Der Bug wurde noch nicht gefixt. Er ist noch offen. Mir ist auch nicht ganz klar, wo der Bug genau liegt. Bei mir funktioniert ein sehr ähnlicher Code. Datakick scheint da, aber eine bessere Ahnung davon zu haben.
  24. Du hast oben einen wichtigen Teil der Fehlermeldung abgeschnitten. Das Problem liegt irgendwie mit der Url Rewrite zusammen.
  25. @datakick Thx for all the explanations. What I haven't got yet: what is the work queue technically? Is it actually a well organized/structured cronjob? Cause what you describe, are we doing over cronjobs. Instead of doing a task, we just save it to a "cronjob table" and every minute the cronjob is checking, if he has some tasks to do ☺️ That's why I wonder, if it's actually pretty much the same or if it's not cronjob related!?
×
×
  • Create New...