How to disable "Reply to" the customer mail on the administration mails

  • Posts: 634
  • Thank you received: 16
  • Hikashop Business
3 years 5 months ago #325293

Hi,

Is there a way to make Hikashop not insert the customer e-mail in the "Reply to" section when the order creation notification is sent to the administrator of the site?

I have checked the Hikashop configuration and I have not see any option to disable it.

Thanks in advance!

--
Victor

Please Log in or Create an account to join the conversation.

  • Posts: 81484
  • Thank you received: 13062
  • MODERATOR
3 years 5 months ago #325322

Hi,

There is indeed no option to disable that.
That would require the development of a plugin to do that properly.
As a quick and dirty solution, you can remove the code:

if(!empty($user_email)) {
					if(HIKASHOP_J30) {
						$mailClass->mailer->addReplyTo($user_email, $user_name);
					} else {
						$mailClass->mailer->addReplyTo(array($user_email, $user_name));
					}
				}
in administrator/components/com_hikashop/classes/order.php but note that you'll loose the change when you update HikaShop so you'll have to redo it after the update.

The following user(s) said Thank You: PeterChain

Please Log in or Create an account to join the conversation.

Time to create page: 0.055 seconds
Powered by Kunena Forum