Jump to content

Edit History

WisQQ

WisQQ

3 godziny temu, Grzegorz napisał:

Niestety, w tłumaczeniach są tylko tematy maili wychodzące do klienta. (w pierwszej kolejności to sprawdzałem).

Jest w tłumaczeniach modułu, natomiast jeżeli chcesz usunąć ID lub Reference, musisz zmodyfikować plik modułu. Fragment poniżej znajdziesz w hookActionValidateOrder.

            if ($dir_mail) {
                Mail::send(
                    $mail_id_lang,
                    'new_order',
                    $this->trans(
                        'New order : #%d - %s',
                        [
                            $order->id,
                            $order->reference,
                        ],
                        'Emails.Subject',
                        $locale),
                    $template_vars,
                    $merchant_mail,
                    null,
                    $configuration['PS_SHOP_EMAIL'],
                    $configuration['PS_SHOP_NAME'],
                    null,
                    null,
                    $dir_mail,
                    false,
                    $id_shop
                );
            }

 

WisQQ

WisQQ

3 godziny temu, Grzegorz napisał:

Niestety, w tłumaczeniach są tylko tematy maili wychodzące do klienta. (w pierwszej kolejności to sprawdzałem).

Musi być w tłumaczeniach, ponieważ tak jest w pliku modułu.

            if ($dir_mail) {
                Mail::send(
                    $mail_id_lang,
                    'new_order',
                    $this->trans(
                        'New order : #%d - %s',
                        [
                            $order->id,
                            $order->reference,
                        ],
                        'Emails.Subject',
                        $locale),
                    $template_vars,
                    $merchant_mail,
                    null,
                    $configuration['PS_SHOP_EMAIL'],
                    $configuration['PS_SHOP_NAME'],
                    null,
                    null,
                    $dir_mail,
                    false,
                    $id_shop
                );
            }

 

×
×
  • Create New...