Jump to content
thirty bees forum

yaniv14

Trusted Members
  • Posts

    630
  • Joined

  • Last visited

  • Days Won

    28

Everything posted by yaniv14

  1. If you have more than one language, make sure you fill the fields in all languages
  2. Try adding display: block;
  3. 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 ````
  4. Can you please add this bug to tb github repo issues.
  5. 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.
  6. Can you make sure you have also index.php file in each folder: mails & nl
  7. 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
  8. Can you share a link to your site?
  9. Glad I could help. Good luck with your new site. It looks great.
  10. 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') );
  11. Can you turn it back on so I can check? Because I've checked it on my TB dev installation and its working fine
  12. Its look like your are missing an image. But the zoom should work only when hovering the image
  13. 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.
  14. @mdekker I've commented on few lines in github on Cart.php. Check them when you have time, because I believe they might help.
  15. @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.
  16. Isn't this commit fixed it? https://github.com/thirtybees/thirtybees/commit/a816d95b8c04869b405ca0e04ce1ad6a42f03c05#diff-68ea9cccedf0d0c07d52a5d7a4bca3d0
  17. 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.
  18. I started working on a module that cover this issue few weeks ago (maybe months), but didn't have time to wrap it to a finished module yet. As soon as I get some free time I will finish it and share it here or in TB store.
  19. getRow will return only single row (the first one). executeS will return array of all matching rows. To get the count, you can just count the result (count($result))
  20. $result = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS( (new DbQuery()) ->select('*') ->from('product_shop', 'ps') ->where('ps.`id_product` = '.(int) $idc['id_product']) ->where('ps.`id_shop` = '.(int) $this->context->shop->id) );
  21. @Traumflug from what I saw its only an informative site, not eCommerce. I can't find any good reason to start a new informative site with TB and not with Wordpress (even if you are TB expert). I guess he have the shopping cart (WooCommerce) because it came with the theme they installed.
  22. That's exactly what I've posted above.
  23. I guess it will be better to override the Send function in Mail.php to add a static bcc address. Never tested it but I think it should work, just create an override to the entire function and set a default bcc instead of null. You can probably just call the parent function and modify the bcc, but I rather check it before posting here.
  24. Whats wrong with the merchant copy? its almost the same.
×
×
  • Create New...