Jump to content
thirty bees forum

the.rampage.rado

Silver member
  • Posts

    1,227
  • Joined

  • Last visited

  • Days Won

    111

Everything posted by the.rampage.rado

  1. Try this: https://github.com/thirtybees/thirtybees/commit/136017aedcbf46f708b31df96ea2c11fd8acecf3 This fix is part of 1.5 but you could try it, just keep a backup of the original file.
  2. You definetly should not stick to 1.3. What is your current php version? After 1.3 you should switch to 1.4 then switch to php 7.4 and update to edge. Currently edge is compatible with php8 but you should be careful around your installed 3rd party modules with php 7.4 and 8. Step by step and with our help you should be able to update it to the latest version. Just always keep a backup of your files and your DB on each step so you can revert back. Reasons to update to edge: - code optimization for modern php versions - speed and compatibility imrpovements - bugfixes - at least 10 security fixes since 1.4 - new features
  3. So you're open to loosing orders if users don't have gmail or yahoo mails instead of once in maybe 25 times you have a user with wrong email?
  4. Do you have a list of all registered domains everywhere in the world?
  5. You can remove all categories thumbnails. I would not modify core or theme files because after an update of those the changes are gone and have to be redone.
  6. So you solved it? If so, please write how so we keep it as resource!
  7. Single or multishop?
  8. How did you manage to achieve that? 🙂 Try this free module: https://store.getdatakick.com/en/modules/consistency
  9. 1. Could you describe what glitches you observe? I believe I have nothing like that. 2. This might be treated as duplicate content by google if you have /en/product1 and /jp/product1 exactly with same desc, title, etc.? 4. Oh, yes, my bad. I was refering to the min quantity. :) :/
  10. 1 and 4 are available currently to TB and 3 I believe is anti-customer practice. 2 is available for names of products but not other fields.
  11. This is my setup as of yesterday when I installed the module, no changes and this is the default status I receive when a bank wire order is placed:
  12. Same issue here. I use Cyrillic and long thought that this is the issue but obviously this is the same for all users. When I paste the composite link generated by the layered navigation or I put it as a target link for banner, slider, link it get's truncated. I would like to show different preselected options like sizes, gender, etc., but no bueno. Any hints? EDIT - related to my previous question, @Traumflug suggested a fix but it does not work for me regarding manufacturer checkbox, only for slider and size - https://github.com/thirtybees/community-theme-default/commit/c7c317123325aacf6096296d4b06b735adf8eb06.
  13. Yes, but you could disable it only when you edit this CMS page then reenable it? TinyMCE is driving me nuts, on each save it puts more and more blank paragraphs...
  14. Do you have this turned on? Yes, I'll move it there. Thanks for the suggestion!
  15. Yes, attribute class that was changed in order to continue to php8 might refuse to play nicely with this module. You tried but it's not working, right?
  16. Here's a simple and short guide to make a simple accordion style FAQ section using HMTL5 and few rows of CSS. Not the perfect solution but a workaround for those waiting to find it. https://www.stechies.com/create-accordion-html-without-javascript/ I combined it with section headers using h2 as title for the sections and it looks pretty fine. It's a simple list, but it's working on all modern browsers and very easy to implement. Adaptation: Put the custom CSS in Thirtybees' Custom Code section or your theme's custom CSS code field (Warehouse has one). If you have a theme solution go with it, as it will combine the custom rules with the main css file and not embed them in the html. Adjust to your liking. details { border: 1px solid #d4d4d4; padding: .75em .75em 0; margin-top: 10px; box-shadow:0 0 20px #d4d4d4; } summary { font-weight: bold; margin: -.75em -.75em 0; padding: .75em; background-color: #5f75a4; color: #fff; } details[open] { padding: .75em; border-bottom: 1px solid #d4d4d4; } details[open] summary { border-bottom: 1px solid #d4d4d4; margin-bottom: 10px; } Open a text editor as Notepad++ and format your html code for your CMS page there. Every Q&A is a separate <details></details> tag. When you're done with your code go to tinymce's source code editor and paste your code. Using the usual WYSIWYG editor does not work (you can edit the text after you imported the source but you can't make the element). EDIT: HTML purifier might have to be disabled in order to save this correctly in TinyMCE, but if you don't make daily changes in this page this could enabled after the page is complete. The only fault is that this workaround is not using .js and when you open new question, the already opened one does not close. But for its simplicity and robustness it's a solid solution for me, no bootstrap shenanigans, etc. <details> <summary>Question 1</summary> Answer 1 </details> <details> <summary>Question 2</summary> Answer 2 </details>
  17. 1.4 should work on php7.4 but push some notices. When you update to 1.4 you could try and update to 1.5 edge on 7.4, this will clear almost all core notices but you'll have to fix any theme/external module ones in order to proceed to php8. I had an issue with cart module tpl files in Warehouse theme, they are fixed now but I'm still not updating to php8.
  18. There should be no breaking changes regarding the theme when updating from 1.4 to 1.5 edge and soon to 1.5 final. There are some inner working 'fixes': Mailer functionality was extracted from core and you should duplicate your settings in one of two new mailer modules Code minification also was extracted from core and you should install the new code minification module (no adjustments needed here), all settings continue to be in Performance tab. You should uninstall tbupdater (not core updater, it should stay), now it's not needed as the module update mechanism was changed and moved to core. Other than that - plenty of performance, security and futureproofing changes that I'm sure you will enjoy. Keep an eye in your error collection module - you might have few notices there but there should be no exceptions.
  19. I gonna post this here as there's no need to swamp github with probable non-bugs. 1. I added second shop to my installation but it was not picking the correect PS_SHOP_NAME. My db was lacking this record despite having the name set up in my BO for the second shop. After adding it manually to ps_configuration with ID 2 it is showing in the end of each page title correctly. 2. My db also lacks PS_SHOP_DOMAIN and PS_SHOP_DOMAIN_SSL for the second shop, despite them being added and visible in BO too. Should I have them in ps_configuration too?
  20. What ThirtyBees version are you rocking?
  21. Few things had to be change in order to allow php8 compatibility and move the project forward. Other than that each and every PS1.6 module I tried this year (I'm using always the edge TB version) has no problems. Of course some 'edge' cases like powerful modules that manipulate stock or other aspects will be affected but I believe if those are so important you might pay additional funds to fix them for TB. TB becomes better and better each day!
  22. @wakabayashi thank you! Any plans to implement this for BO login as we discussed before?
  23. Yes, so probably it's a server issue on my side... 😕
  24. Probably you are correct, looks like this to me too. I'll try to troubleshoot myself and if no luck will get back. Thanks!
  25. Thank you! So you could reproduce this? Regarding my use case of media servers - as you said I only use them for cookie-less delivery of static files and this setup saves from sync issues. Literally all static files are loaded by the media server that way. Could we manipulate those headers on app level or they should be configured on server level? I'll make a github issue later, just want to google little bit more in order to try and find possible fixes.
×
×
  • Create New...