WP电子商务:修改发售时发送给管理员的交易报告电子邮件(WP Ecommerce: modifying the transaction report email sent to admin upon

编程入门 行业动态 更新时间:2024-10-21 16:30:49
WP电子商务:修改发售时发送给管理员的交易报告电子邮件(WP Ecommerce: modifying the transaction report email sent to admin upon sale)

我希望修改在销售商品时发送给管理员的交易结果电子邮件(包括并排除某些信息等),我在google上进行了研究并查看了wp-ecommerce支持网站并且无法进行找到当前正在进行此操作的位置(很多对旧版本插件的引用已经发生了很大变化)。 我将继续寻找在哪里这样做,但由于我不熟悉wp-ecommerce(或wordpress),我不完全确定在哪里看。

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

I am looking to modify the transaction results email that is sent to the admin upon sale of an item (include and exclude certain information, etc), I've researched on google and looked on the wp-ecommerce support site and have been unable to locate where this is being done currently (a lot of references to older versions of the plugin that have since changed significantly). I will continue to look for where to do this but as I am not well versed in wp-ecommerce (or wordpress for that matter) I am not entirely sure where to look.

If anyone could shed light on this, it would be greatly appreciated.

最满意答案

在wp-e-commerce / wpsc-updates / updates_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

Under wp-e-commerce/wpsc-updates/updating_tasks.php

Line 356-372 is where the email section is.

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')); } }

If you want to go even deeper into the whole email code, you can also go into this section

wp-e-commerce/wpsc-includes/purchase-log-notification.class.php

更多推荐

本文发布于:2023-04-28 02:11:00,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1329783.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:发送给   电子邮件   管理员   电子商务   报告

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!