Jump to content
thirty bees forum

yaniv14

Members
  • Posts

    610
  • Joined

  • Last visited

  • Days Won

    27

yaniv14 last won the day on September 17

yaniv14 had the most liked content!

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

yaniv14's Achievements

  1. swiftmailer stopped being maintained since 2021, you should use phpmailer for better future support.
  2. mailalerts module sent order email to admin. make sure you have the correct email address, one per line. and also make sure the module is hooked to actionValidateOrder
  3. I think you will have to override isCleanHtml function in classes/Validate.php just remember that this validation is used in many places beside Product
  4. try removing "ajax_add_to_cart_button" class, because there is a click event bind to this class
  5. I think it will be better to translate in https://crowdin.com/project/thirty-bees so everyone can use this translation. @datakick is crowdin still active?
  6. classes/ImageManager.php look for function generateImageTypesByEntity also you can check function getSourceImage. this function look for the file existence on the disk.
  7. it seems like those missing images are being generated by pagespeed module or something like that (based on the url). if you have such a module maybe you can try to disable it and see if it helps.
  8. you should use phpmailer module by thirtybees, and yes it is normal behavior for the password field to not show after saved
  9. configure sending email as html
  10. maybe its not indexed. try to reindex it in back office -> preferences -> search
  11. just edit the file your self and replace lines 165-171 with the single line @datakick mentioned
  12. just add img src where ever you want it on the file. <img src="{$link->getImageLink($product.link_rewrite, $product.image->id_image, 'medium_default')|escape:'html':'UTF-8'}">
  13. i dont understand what you mean by default niara medium and not the image of the product. you can choose which thumbnail to show based on your image types. on the sample i sent its taking the medium_default. order history is the page that shows all my purchases history, order-detail is the template that render the order it self (when you click on an order).
  14. yes, inside order-detail.tpl just look for this line <div id="order-detail-content" class="table_block table-responsive"> and after that line you the table. just add another th in the thead and another td to tbody. you will also need to modify the tfoot colspans to match the extra column. dont forget that {$link->getImageLink($product.link_rewrite, $product.image->id_image, 'medium_default')|escape:'html':'UTF-8'} only return the url to the image, so you will need to wrap it inside src tag
  15. you dont need to modify any controller. Order->getProducts() already contains image information. you can just add to your order-detail.tpl {$link->getImageLink($product.link_rewrite, $product.image->id_image, 'medium_default')|escape:'html':'UTF-8'}
×
×
  • Create New...