我有一個惡夢,試圖擴展在WPP電子商務WordPress的管理員電子郵件。 這些報告是非常基本的,沒有文檔支持添加到電子郵件。在WordPress中擴展WP電子商務通知電子郵件
我希望能夠將管理地址詳細信息添加到管理報告中,因此我無需每次進行銷售時都登錄Wordpress後端查看purchase_log。
我試過下面的例子,從這裏http://getshopped.org/forums/topic/add-shipping-method-to-admin-email/,但沒有運氣。
我加入了這一點:
$report = str_replace('%shipping_country%', $purchase_log['shipping_country'], $report);
$report = str_replace('%billing_country%', $purchase_log['billing_country'], $report);
$report = str_replace('%shipping_country%', $purchase_log['shipping_country'], $report);
$report = str_replace('%buyer_name%', wpsc_display_purchlog_buyers_name(), $report);
$report = str_replace('%shipping_address%', wpsc_display_purchlog_shipping_address(), $report);
$report = str_replace('%shipping_city%', wpsc_display_purchlog_shipping_city(), $report);
$report = str_replace('%shipping_country%', wpsc_display_purchlog_shipping_country(), $report);
這個(這是最初在wpsc_transaction_results_functions.php)
$report = apply_filters('wpsc_transaction_result_report', $report);
$report = str_replace('%purchase_id%', $report_id, $report);
$report = str_replace('%product_list%', $report_product_list, $report);
$report = str_replace('%total_tax%', $total_tax, $report);
$report = str_replace('%total_shipping%', $total_shipping_email, $report);
等等
,但進入後,我得到以下錯誤信用卡詳細信息 - 有沒有人知道添加到報告的簡單方法? 乾杯傢伙
英雄!謝謝。 WP電子商務回覆我說,這是他們將在未來的更新中帶出來的東西。但現在這很好 – mossman