Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

snblack

Newbie
  
  • Posts

    5
  • Joined

  • Last visited

snblack's Achievements

Rookie

Rookie (2/14)

  • First Post
  • Conversation Starter
  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

0

Reputation

  1. Решил вопрос. /catalog/view/theme/default/template/product/category.tpl Нашел старый урл и заменил на новый.
  2. В списке товаров при нажатии на вторую страницу в пагинации переходит на старый url там где сайт разрабатывался. Где менять ссылку на домен для пагинации? Если не понятно объясняю, прикрепил скриншот.
  3. $mail->setTo( array( $this->config->get('config_email'), $this->config->get('config_alert_emails') ) ); Вот такая конструкция сработала. Спасибо.
  4. Письмо отправляется на ящик с переменной "config_email". Как добавить правильно условие, что бы брал почту с "config_alert_emails" и отправлял туда тоже? Вот кусок файла .php: if (($this->request->server['REQUEST_METHOD'] == 'POST') && $this->validate($settings)) { $mail = new Mail(); $mail->protocol = $this->config->get('config_mail_protocol'); $mail->parameter = $this->config->get('config_mail_parameter'); $mail->hostname = $this->config->get('config_smtp_host'); $mail->username = $this->config->get('config_smtp_username'); $mail->password = $this->config->get('config_smtp_password'); $mail->port = $this->config->get('config_smtp_port'); $mail->timeout = $this->config->get('config_smtp_timeout'); $mail->setTo($this->config->get('config_email')); if (isset($this->request->post['wsf_email']) and !empty($this->request->post['wsf_email'])) { $mail->setFrom($this->request->post['wsf_email']); } else { $mail->setFrom($this->config->get('config_email')); }
×
×
  • Create New...

Important Information

On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice.