Jump to content
thirty bees forum

datakick

Administrators
  • Posts

    3,137
  • Joined

  • Last visited

  • Days Won

    496

Everything posted by datakick

  1. @hedgehog what is your memory limit? When thirtybees copy image, it needs to resize it. It's likely that the source images are huge, so they require large amount of memory to process. TB will not try to resize such images if you run on server with limited memory, as it would lead to server crash.
  2. Don't forget to toggle Display to customer
  3. @andyc if it's showing 1.0.7, then it probably wasn't. Did you encounter any problems during update?
  4. @Fabsca without error message we can't really help you much. Please look into thirtybees error logs inside log directory server's error log -- location can vary depending on server's configuration, but it's usually /var/log/apache2/error.log or something like that. If you have some sort of cpanel, then you should also be able to access your error logs through there. Once we know what the problem is, we can fix it
  5. You need to increase php memory_limit in your php.ini, 128MB is not enough.
  6. Hi @LucaSabatoUK, does this module work on vanilla ps16? If so, what issues did you encounter? Since we are talking about open source module, could you provide link to github repository? I'll have a look at it in my spare time
  7. That's true, the source images must be high quality. Merchant needs to make sure that the white background does not blend into the image. At this point, it's probably easier to just remove the background altogether, and make it transparent png. Then we could simply show this image on top of any background
  8. I think it's indeed some on-the-fly image manipulation. https://static.toom.de/produkte/bilder/1450502/145050202.png https://static.toom.de/produkte/bilder/1450502/145050202.png?grey=1 This effect can be achieved by imagemagick, for example by using floodfill. For this to work, source images must be in good quality, and have pure white background.
  9. Does this module work on ps16?
  10. @Steve, if your php can't send emails directly, you can always use stmp. Simply enter your credentials for your gmail (or any other) account, and thirtybees will send emails through this email address.
  11. highest 1.6 version, in this case 1.6.1
  12. @Fabsca look into log directory inside your thirtybees installation, there should be file with error log. Let us know the error message
  13. sure, it will be part of the upcoming release. Here's all the commits that are scheduled: https://github.com/thirtybees/thirtybees/compare/1.0.7...1.0.x
  14. @danwarrior could you share link to your course?
  15. Try to change this order by
  16. did you restarted php server after you changed php.ini file?
  17. When downloading modules from github, it's always recommended to download official releases. When you click on big grean clone/download button, you are downloading source code. But that does not mean it's a valid module. Some modules require build process to be performed. Developers often do this for you and publish valid packaged in release tab.
  18. @haylau sure, you can download and use the new version right now. Or you can wait, as it will be part of the next tb release
  19. This is indeed a compatibility problem in thirtybees core. I've filled an issue here: https://github.com/thirtybees/thirtybees/issues/786
  20. @Pilou that's the same hook you already modified, see your first post
  21. @foolab said in [Free Module]Revws - Product Reviews: wait! I didn’t “mess” with templates so much but I always thought that was possible to add a hook from TB/PS backend, and then attach to it what module view you want… it has to be done the other way around instead?! Well, you can surely create a new hook, and transplant existing module's hook to that one. But that won't help you in any way, because this new hook will not be triggered by your theme (unless you have one of those fancy themes that let you to choose what hooks to display where). For normal themes (like community), you will need to edit template file, and call the new hook manually
  22. @Angstony_2 I have no idea, the snippet works just fine on my server, and it does not change search results in any way. I'm using community theme -- what theme do you have? You can try it on my demo server
  23. @Pilou that warning is not really important, you can safely disregard it. It's really strange that it does not work for you. I've just tested it on my installation and it works just fine out of the box. You can troubleshoot this further by editing the hook code, and inserting return statement such as php return '-------------------HERE--------------'; on different places. Start with the very beginning of the hook, so you know that the hook is is actually called by your theme. You should see this in your product page (don't forget to clear cache in Administration > Performace after every edit): If you see this, then edit the hook again, and move it further down the code, just before the first return '';. Clear cache, and check product page again. If you see the same result, it means that hook is prematurely terminated because one of the condition in preceding if statement. If you don't see anything, move it before the next return ''; statement. That should give you the idea what and where goes wrong
  24. You can 1. Disable left column on search page entirely -- go to Preferences > Themes, click on Advanced settings, and uncheck Left column for Search controller. 2. Alternatively, you can invert order of columns using css. One way to do that is this css rule (add it to your global.css file). Note that it will be applied on search page only. css @media (max-width: 768px) { body#search #columns>.row { display: flex; flex-direction: column-reverse; } }
  25. @x97wehner that's actually much more complicated than I thought. Review average is rendered using either displayRightColumnProduct or displayProductButton hooks -- what hook will be used can be selected in module settings page. It's possible to edit your product.tpl template and move one of these hooks to the appropriate place. For example, move this line. The problem with this approach is that these hooks are shared -- many modules can, and usually do, use them to display additional information on product page. So, if you move placement of this hook within template, you will be moving content generated by other modules as well. In other words - you can use this approach only if no other module is using this hook -- you can check in Modules > Positions. For example, in my case, if I move displayProductButtons hook it will affect Block Product Payment Logos module as well. I will add a new dedicated hook to the module for this particular use case. That way, you will be able to call this hook anywhere in the product template, and it will not impact other modules.
×
×
  • Create New...