Jump to content
thirty bees forum

yaniv14

Members
  • Posts

    580
  • Joined

  • Last visited

  • Days Won

    24

Everything posted by yaniv14

  1. If using apache web server try disabling mod_security
  2. https://github.com/thirtybees/thirtybees#requirements
  3. installing the module is not enough, you will need to install and run elastic search on your server. I dont have any experience with elastic search module, but if I remember correctly this module was never really fully production ready.
  4. try to disable elastic search module
  5. Check that you have proper write permission for folders
  6. There is no override to a theme template file (tpl). I dont think Niara theme will be update with the core update module. if you have future concerns just make a copy of the modified file and keep it aside
  7. It looks like DHL has switched to a new API and maybe dropped support for older WSDL if you look in there main wsdl page you will see: <wsdl:documentation> NOTICE: This WSDL is valid for implementations that are in production prior to 14th March 2021. Please note that there is a new WSDL as part of the latest MyDHL API Developer guide. Please contact your local DHL IT Contact. </wsdl:documentation> i am not using dhl so I can't tell much. Good luck
  8. The reason that your migration fail was not related to thirtybees or prestashop, it was because you add an override with code that not supported by PHP 7.2+. I am not familiar with the migration process but I recommend doing it without your overrides (for start), and also after migrate you should continue updating to latest thirtybees version. regarding this error, I think you have something like: "private function getLangLink(.....)" when should have: "public function getLangLink(.....)"
  9. @jollyfrog I prefer not to be involved in a decision about the approved theme design. and leave the decision to the members of the community and you.
  10. @jollyfrog can you provide a finish design (accepted by community members) that covers most important pages: home, category, product, checkout, cart?
  11. @led24ee It is necessary because you might get a javascript error. document.querySelector('.unit-price').innerHTML -> "innerHTML" is a property of an object, and if the object does not exists then the property cannot be called.
  12. @led24ee in case you don't have this in every product page you should protect the code a bit. you should wrap it inside a condition. like: window.addEventListener('DOMContentLoaded', (event) => { if (document.querySelector('.unit-price')) { .... rest of code ... } });
  13. @led24ee My mistake... yes you are right, you only need to pick a new selector.
  14. if you only need it in product page, so you can try adding this code to the bottom of "themes/niara/js/product.js" window.addEventListener('DOMContentLoaded', (event) => { const lang = document.documentElement.getAttribute('lang'); if (lang === 'en-us') { document.querySelector('.unit-price').innerHTML = document.querySelector('.unit-price').innerHTML.replace('per meeter', 'for meter'); } else if (lang === 'tk') { document.querySelector('.unit-price').innerHTML = document.querySelector('.unit-price').innerHTML.replace('per meeter', 'for meter in tk'); } });
  15. This tutorial from 2017 most likely will work for you. But its not a recommended way of doing it, because it requires modifying core files. I suggest (until proper fix will be implanted in core) doing some hack with javascript.
  16. you or your server provider should increase php memory_limit to 128mb or 256mb. from 32mb you have now
  17. If its a different module then start a new topic and give more details, and we will try to help.
  18. check your rewrites, if you use nginx make sure you cover all folders rewrites. if using other web server just regenerate htaccess.
  19. <table> should be replaced by any table you wish to modify. e.g. "ps_cart" to change on database run: ALTER DATABASE <db name> CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; when <db name> is you db name
  20. https://www.google.com/recaptcha/admin/create
×
×
  • Create New...