Ghi chú Prestashop

Từ ChipFC Wiki
Phiên bản vào lúc 10:46, ngày 17 tháng 3 năm 2018 của BS135 (Thảo luận | đóng góp) (Cài đặt plugin codemirror cho TinyMCE)
Bước tới: chuyển hướng, tìm kiếm


Cài đặt plugin codemirror cho TinyMCE

Disable sendMail for default customer

  • \classes\PaymentModule.php
if (Validate::isEmail($this->context->customer->email) && ($this->context->customer->email != Configuration::get('PS_SHOP_EMAIL'))) {
    Mail::Send(
        //...
    );
}
  • \modules\ps_emailalerts\ps_emailalerts.php
if ($dir_mail && ($customer->email != $configuration['PS_SHOP_EMAIL'])) {
    Mail::Send(
        //...
    );
}