Jump to content
thirty bees forum

yaniv14

Members
  • Posts

    587
  • Joined

  • Last visited

  • Days Won

    24

Everything posted by yaniv14

  1. https://github.com/thirtybees/blockcart/releases
  2. Is your installation root folder contain capital letters? if so try to reinstall it with lower case letters only. instead of: /ThirtyBees/admin123 -> /thirtybees/admin123
  3. There are few free and paid modules when you can add custom html code to hooks/pages/custom hooks/etc... This should be enough to cover all your needs. http://store.nemops.com/front-office-features/28-html-block.html#.WqQhYHVubeQ https://contentbox.org/ https://mypresta.eu/en/art/news/prestashop-html-box-module-is-available-for-free.html
  4. Can you check that files & folders reading permissions are the same for en & de files/folders.
  5. Maybe you are missing contact and/or contact_form mail templates for the German lang. Check inside your theme folder /mails/de
  6. Check this post https://forum.thirtybees.com/topic/1492/keep-getting-rewrite-error-in-seo-urls-tab/
  7. If you have more than one language, make sure you fill the fields in all languages
  8. Try: <video width="300" height="150" controls> <source src="........." type="video/mp4"> </video> These are available attributes for video tag: ```` autoplay - Specifies that the video will start playing as soon as it is ready controls - Specifies that video controls should be displayed (such as a play/pause button etc). height (pixels) - Sets the height of the video player loop - Specifies that the video will start over again, every time it is finished muted - Specifies that the audio output of the video should be muted poster - URL Specifies an image to be shown while the video is downloading, or until the user hits the play button width (pixels) - Sets the width of the video player ````
  9. Can you please add this bug to tb github repo issues.
  10. You need to compare hashed password together and not the other way around. So you will need to hash the user entered password and compare.
  11. Can you make sure you have also index.php file in each folder: mails & nl
  12. This is the error I am getting from the server Fout - Het taalbestand ontbreekt voor: nl What ever @SLiCK303 suggested is the right thing to do. Make sure you have email template files for your language. Inside modules/sendtoafriend/mails/nl And themes/yourtheme/modules/sendtoafriend/mails/nl You should have 2 files. sendtoafriend.html and sendtoafriend.txt
  13. Glad I could help. Good luck with your new site. It looks great.
  14. Try modifying you zoom init function to match the name of your large image. look inside themes/yourtheme/js/product.js for initZoom( $('#bigpic').attr('src').replace('large', 'thickbox') ); to initZoom( $('#bigpic').attr('src').replace('produit_large', 'thickbox') );
  15. Can you turn it back on so I can check? Because I've checked it on my TB dev installation and its working fine
  16. Its look like your are missing an image. But the zoom should work only when hovering the image
  17. You can just add it to the tpl file. It won't be clean, but will work. Remember that is you have curly braces in your js code, you will have to wrap it inside {literal}.......{/literal} Also make sure you are editing the correct file, because you might have a version loaded from the template folder and not the root module folder. Good luck.
  18. @mdekker I've commented on few lines in github on Cart.php. Check them when you have time, because I believe they might help.
  19. @mdekker I dont think that removing it will allow translations. I think we discussed about it few months ago, and you assigned it to Fabio. But again, maybe it was fixed along the way and I've missed it.
  20. Isn't this commit fixed it? https://github.com/thirtybees/thirtybees/commit/a816d95b8c04869b405ca0e04ce1ad6a42f03c05#diff-68ea9cccedf0d0c07d52a5d7a4bca3d0
  21. yaniv14

    Webservice error

    I found 2 places that might cause this issue. I never experienced ws before so I am not sure. But it seems that classes/Combination.php should be modified on 2 lines: line 383: ->join(Shop::addSqlRestriction('attribute', 'a')) should be ->join(Shop::addSqlAssociation('attribute', 'a')) line 404: ->join(Shop::addSqlRestriction('product_attribute', 'a')) should be ->join(Shop::addSqlAssociation('product_attribute', 'a')) Can you please test and let me know if its ok.
×
×
  • Create New...