
catalog/language/english/mail/order.php
Hi, I found where to change but not exactly sure which part, when I try to edit I get a syntax error...
// Admin Alert Mail
if ($this->config->get('config_alert_mail')) {
$subject = sprintf($language->get('text_new_subject'), html_entity_decode($this->config->get('config_name'), ENT_QUOTES, 'UTF-8'), $order_id);
Change to?
$subject = sprintf($language->get('text_new_subject'), ('Notification of payment received'), ENT_QUOTES, 'UTF-8'), $order_id);
is that correct?
// Admin Alert Mail
if ($this->config->get('config_alert_mail')) {
$subject = sprintf($language->get('text_new_subject'), html_entity_decode($this->config->get('config_name'), ENT_QUOTES, 'UTF-8'), $order_id);
Change to?
$subject = sprintf($language->get('text_new_subject'), ('Notification of payment received'), ENT_QUOTES, 'UTF-8'), $order_id);
is that correct?
I was saying the language file...
you change it to anything you want, but keep the %s sign there.
You mean, edit like below?
$_['text_new_subject'] = 'Notification of payment received - Order %s';
That would just make subject as for an example; Notification of payment received - order 22?
Will it still have store name in the subject?
$_['text_new_subject'] = 'Notification of payment received - Order %s';
That would just make subject as for an example; Notification of payment received - order 22?
Will it still have store name in the subject?
Code: Select all
$_['text_new_subject'] = '%s - Order %s';
Code: Select all
$_['text_new_subject'] = '%s - Notification of Payment Received: Order %s';
Who is online
Users browsing this forum: No registered users and 5 guests