Jump to content
thirty bees forum

led24ee

Trusted Members
  • Posts

    429
  • Joined

  • Last visited

  • Days Won

    12

Everything posted by led24ee

  1. Ok, I see now. But this is called design.
  2. I don't get it. There is this possibility already in TB. Product customization. File fields.
  3. Hi. This one (https://addons.prestashop.com/en/sizes-units/24128-product-combination-attribute-dimensions.html) seems to be exactly what I need. Does anyone have experience with this module ?
  4. Only 1000 ? As far as I know the reason why big numbers were discovered was, that there wasn't possibility to count such warnings ... Sorry for OT.
  5. I have never got error like this. And that's the reason why I don't believe it's TB caused error. What Your browser says ? Usually try to access to your server via FTP. I f this works, then You can find out what's wrong with server.
  6. TB1.0.4 is SUBMIT visible, also CAPTCHA. So no need for CAPTCHA. That's the reason why I also get spam. How can this be fixed ? Or is this already fixed in newer version ? I use warehouse possibility also.
  7. How to add SELLER to invoice template with translation. Find file : invoice.addresses-tab.tpl (root/pdf/) make changes on first row and add "Seller" with possibility to translate it. This header is part in many template. {if isset($order_invoice)}{l s='Seller' pdf='true'}{/if} How to add SENDER to delivery slip Find file : delivery-slip.addresses-tab.tpl (root/pdf/) make changes on first row and add "Sender" with possibility to translate it. Now You need to make translation in PDF section. Same way You can make modifications to (root/classes/pdf) INVOICE HTMLTemplateInvoice.php DELIVERY SLIP HTMLTemplateDeliverySlip.php CREDIT SLIP HTMLTemplateOrderSlip.php ORDER RETURN HTMLTemplateOrderReturn.php To translate these find in files function: public function getheader() and add translation possibilty the result can be like this : public function getHeader() { $this->assignCommonHeaderData(); $this->smarty->assign(['header' => ($this->l('Invoice'))]);
  8. I can try also.
  9. Did You find solution ?
  10. Ok. First it seems that there is misconfiguration. There are fields and multiple values. They need different type of separator, but looks like there's only comma in ths csv. So the program don't understand that this field contains many values. You need to separate these values with something else that comma. This can be very tricky to generate csv with proper separator.
  11. Try this. Go to back office, select Customers, then roll down and find Set required field for this section and uncheck.
  12. That's wonderful. I have long time waiting for this. It was really PITA to deal with VAT customers. There is also problem with VAT checking. For solution I need to disable both APE and SIRET check in classes/validate.php plus I need to make changes in _customer table too.
  13. Also when You use on product importing option -Delete all products- then product tags (these what you can use in shop) table goes wrong. Result is empty tag boxes in shop.
  14. So there is place for tag, but there isn't value for this. Simply. For solution remove the place or put the value. If You can put here some example of this file it's easier to help.
  15. It's just mail example. You can put instead of this whatever You want.
  16. I have multiple suppliers for one product. I also use advanced stock. I also use CSV import. Because if You have 300 product and each of them can have 3 to 12 combination then it's impossible to put all this in database without automation. Now I discover that if all is OK and You need to change something in products then it's very easy to make an CSV file and import it. Unfortunately this will mess up with stock quantity. For example if You have 5 different supplier then importing an CSV where all five are present, TB also generates stock movement. If there are already 10 item, then with first supplier there is movement to add 10. Next product with the same ID and product code will make stock movement to add summary of all existing items, in actual case it adds 20. With fifth supplier you have 320 item on your stock. Is this a bug or I'm making something wrong ? Because if this isn't bug then this CSV isn't useful. There are extra stock movements in SQL table stock_mvt. If i delete these, is this solution ? Or if I delete something from SQL table it makes something worse ? Thank You
  17. Now there's also clear (at least for me) why there was error for sending plain text emails. Keywords are UTF-8 an Line Endings. Hope this will help somebody.
  18. Holy f.... I found what's wrong. There was encoding problem. File lang.php was in ANSI, must be UTF-8. And I spent *"@&/** time for this.
  19. I know where templates are for system mails and for module mails. Actually there is two place for them. One for default theme and one for Your currently used theme. I know also where are translated email headers (this file is lang.php). But when there's translation process then TB can't use headers even if they are in lang.php file. So some emails have header and some don't. I can put manually something in header and this will work. I'm trying to find where this result is stored. So far I couldn't find it. Problem is that when there's no header then TB can't use this email and You get error. This is really annoying because one of this email is for password recovery.
  20. I couldn't find button like this. (TB1.0.4)
  21. Can somebody tell where TB keeps email templates. Problem is that when I use EMPTY CACHE then some email subjects are lost. They're in lang.php file (mails/language) and (themes/themename/mails/language) but TB can't use them. That's also the reason why some emails headers got lost. And when they're lost then You get an error when trying to sent email.
  22. Now I discover that when I try to send email as plain text then only shop logo is in email and nothing else. In HTML everything looks fine. Also there is module "Send to a Friend" and there is no CAPTCHA check neither for visitors or clients.
  23. Hi. I spent about 10 hours and 2 keyboard with same error. Finally, after 2 beers, pack of cigarettes and many hundred ugly words I found out that this error is caused due to empty mail template. Basically is needed only email subject. If this is empty then there's always error and I can't find any log for this. I just start playing with different things until i found this email template. Of course I can't be sure that this is reason for every situation. My problem was with password recovery and empty header was for password_query template.
  24. I found temporary solution. But there was also my VERY BIG mistake. I have many webservers and unfortunately I made changes in wrong server. Anyway if I change in file themes > > product.tpl line 266 (TB 1.0.4) to this {if $product->id_manufacturer < 0} then everything is good.
  25. I tried this also many times. All combination. No changes. I even tried to change php version in webserver from 5.5. to 5.6 to 7.0 to 7.1 etc. Still no luck.
×
×
  • Create New...