Jump to content
thirty bees forum

yaniv14

Trusted Members
  • Posts

    613
  • 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. its probably not working because the autoload css files loads before the modules css files. so the original superfish-modified.css has higher priority than your modified version. you will probably need to use some !important declaration or get a better specificy than the origin class/id.
  2. It seems like the module did not modified to comply with recent core commits. for now you can manually update the module. edit this file modules/custompayments/controllers/admin/AdminCustomPayments.php line 429 and change this protected function uploadImage($id, $name, $dir, $ext = false, $width = null, $height = null) { $width = (int) Configuration::get(CustomPayments::IMAGE_WIDTH); $height = (int) Configuration::get(CustomPayments::IMAGE_HEIGHT); return parent::uploadImage($id, $name, $dir, $ext, $width, $height); } to this protected function uploadImage($id, $name, $dir, $ext = false, $width = null, $height = null, $generateImageTypes = []) { $width = (int) Configuration::get(CustomPayments::IMAGE_WIDTH); $height = (int) Configuration::get(CustomPayments::IMAGE_HEIGHT); return parent::uploadImage($id, $name, $dir, $ext, $width, $height, $generateImageTypes); } just to point out that I am not familiar with the custompayment module so I don't know if you will have any other issues.
  3. did you try to set the desire position of each attribute in the back office? based on the code it should works fine. ORDER BY ag.`position` ASC, a.`position` ASC, agl.`name` ASC'; unless you have an override for ProductController "assignAttributesGroups" or Product class "getAttributesGroups"
  4. swiftmailer stopped being maintained since 2021, you should use phpmailer for better future support.
  5. 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
  6. 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
  7. try removing "ajax_add_to_cart_button" class, because there is a click event bind to this class
  8. 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?
  9. classes/ImageManager.php look for function generateImageTypesByEntity also you can check function getSourceImage. this function look for the file existence on the disk.
  10. 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.
  11. you should use phpmailer module by thirtybees, and yes it is normal behavior for the password field to not show after saved
  12. configure sending email as html
  13. maybe its not indexed. try to reindex it in back office -> preferences -> search
  14. just edit the file your self and replace lines 165-171 with the single line @datakick mentioned
  15. 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'}">
×
×
  • Create New...