Jump to content
thirty bees forum

yaniv14

Trusted Members
  • Posts

    618
  • 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. just change private to protected in line 9
  2. just place it after the beginning of the class class Hook extends HookCore { protected static $_hook_modules_cache_exec = null; ..... }
  3. after you installed phpmailer module did you configure the smtp for the module?
  4. After you installed the phpmailer module, did you selected it as email transport?
  5. it looks like you upgrade did not finish correctly. this 'product_attribute_shop.width' column introduced in todays commits and was suppose to be added to your db as part of the upgrade, without the need to go to the db part and do a manual db upgrade. I would suggest to try the upgrade again.
  6. 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.
  7. 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.
  8. 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"
  9. swiftmailer stopped being maintained since 2021, you should use phpmailer for better future support.
  10. 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
  11. 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
  12. try removing "ajax_add_to_cart_button" class, because there is a click event bind to this class
  13. 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?
  14. classes/ImageManager.php look for function generateImageTypesByEntity also you can check function getSourceImage. this function look for the file existence on the disk.
  15. 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.
×
×
  • Create New...