2013-03-16 68 views
1

我期待修改交易结果电子邮件发送到管理员在出售物品(包括和排除某些信息等),我研究过在谷歌和看着wp电子商务的支持网站,并一直无法找到目前正在做的事情(很多引用老版本的插件,因为后来大大改变)。我将继续寻找在哪里做到这一点,但由于我不熟悉wp-ecommerce(或者wordpress),我不完全确定在哪里寻找。WP电子商务:修改交易报告电子邮件发送给管理员出售

如果有人能够阐明这一点,将不胜感激。

回答

3

在WP-电子商务/ WPSC-更新/ updating_tasks.php

356-372行是电子邮件节。

add_option('wpsc_email_receipt', '', __('Thank you for purchasing with %shop_name%, any items to be shipped will be processed as soon as possible, any items that can be downloaded can be downloaded using the links on this page.All prices include tax and postage and packaging where applicable.You ordered these items:%product_list%%total_shipping%%total_price%', 'wpsc'), 'yes'); 
add_option('wpsc_email_admin', '', __('%product_list%%total_shipping%%total_price%', 'wpsc'), 'yes'); 

if(get_option('wpsc_email_receipt') == '') { 
    if(get_option('email_receipt') != '') { 
     update_option('wpsc_email_receipt', get_option('email_receipt')); 
    } else { 
     update_option('wpsc_email_receipt', __('Thank you for purchasing with %shop_name%, any items to be shipped will be processed as soon as possible, any items that can be downloaded can be downloaded using the links on this page.All prices include tax and postage and packaging where applicable.You ordered these items:%product_list%%total_shipping%%total_price%', 'wpsc')); 
    } 
} 
if(get_option('wpsc_email_admin') == '') { 
    if(get_option('email_admin') != '') { 
     update_option('wpsc_email_admin', get_option('email_admin')); 
    } else { 
     update_option('wpsc_email_admin', __('%product_list%%total_shipping%%total_price%', 'wpsc')); 
    } 
} 

如果你想要去更深入到整个电子邮件的代码,你也可以进入本节

WP-电子商务/ WPSC,包括/购登录notification.class.php

1

我为这个和许多其他wp电子商务功能创建了一个插件。 通过shop styling plugin,您可以使用占位符以及来自wordpress后端的任何其他邮件修改交易报告,而无需修改任何插件文件。

+0

你知道有趣的你提到这一点。在完成我所需的修改后,我看到了您的插件。这是相当全面的。最后,我使用它来更好地了解样式如何与电子商务后端一起工作,所以我想对此表示感谢! – zillaofthegods 2013-04-01 17:48:39

+0

Hannes如何在客户完成购买后更改交给我的交易电子邮件?我知道在您的插件中有一个交易页面选项卡(我已购买),但似乎只能在客户购买某些内容后才能在网站上编辑消息,而不是交易报告电子邮件。 – muddmanrich 2013-04-11 08:24:46

+0

嗨,在当前版本中有一个wysiwyg字段来自定义其他电子邮件字段下的设置页面中的交易报告 – Hannes 2013-04-18 18:30:44

相关问题