How To Not To Display The Vendor Email In The Order Email

Hello,

I was wondering if it's possible not to show the vendor email in the email sent to the buyer upon confirming placing the order?

The point is when the buyer places an order and finishes the payment, he receives an email says that the sender is the vendor. can I make that email sent by the marketplace email instead ?

Thanks

What document editor do you use - old or new?

What document editor do you use - old or new?

Hi,

Thanks for the reply, but I am not sure what you mean in your question ?

Hi,

Thanks for the reply, but I am not sure what you mean in your question ?

I mean the Settings -> Appearance -> Email templates mode setting

I mean the Settings -> Appearance -> Email templates mode setting

Hi ..

It's New (nice and editable via admin)..

Open the app/functions/fn.cart.php file, find the fn_order_notification function and replace

        if ($notify_user == true) {
        $mailer->send(array(
            'to' => $order_info['email'],
            'from' => 'company_orders_department',

with

        if ($notify_user == true) {
        $mailer->send(array(
            'to' => $order_info['email'],
            'from' => 'default_company_orders_department',

Then check the result

Many thanks eComLabs .. Great ! it worked :)

You are welcome! :)

Hi Ecom,

Is there any way to put on my_changes, and also how to change the header, I check header email still using vendor logo, not my website logo.

Thank you.

Hi Ecom,

Is there any way to put on my_changes, and also how to change the header, I check header email still using vendor logo, not my website logo.

Thank you.

Without detailed code overview I do not see any hooks to do it with the module.

As for logo, please try to open the app/Tygh/Template/Document/Variables/CompanyVariable.php file and replace

$this->logos = fn_get_logos($company_id);

with

$this->logos = fn_get_logos(0);

Without detailed code overview I do not see any hooks to do it with the module.

As for logo, please try to open the app/Tygh/Template/Document/Variables/CompanyVariable.php file and replace

$this->logos = fn_get_logos($company_id);

with

$this->logos = fn_get_logos(0);

Unfortunately, it does not work, any idea what else should i do

Thank you.

Unfortunately, it does not work, any idea what else should i do

Thank you.

Works on my local installation. Try to clear cache