Affilatewp + woocomerce - 需要将会员名称/ID 添加到 admin-new-order.php

Affilatewp + woocomerce -need to add affiliate name / id to admin-new-order.php

提问人:Andrea Jessey 提问时间:11/11/2023 最后编辑:LoicTheAztecAndrea Jessey 更新时间:11/11/2023 访问量:13

问:

我正在努力解决这个问题,任何帮助将不胜感激。

我们正在使用 AffiliateWP 插件和 WooCommerce。我很想将会员名称,与订单关联的ID添加到admin-new-order.php电子邮件中。

这是我在函数文件中尝试过的,但没有运气。

{
    // Add affiliate name to admin emails
    if ( $is_admin_email ) {
        
        add_action( "woocommerce_email_after_order_table", "custom_woocommerce_email_after_order_table", 10, 1);
    
        function custom_woocommerce_email_after_order_table( $order ) {
            echo do_shortcode( '[affiliate_name]' );
        }
        
    } // endif $is_admin_email
}
PHP 电子邮件 WooCommerce

评论


答: 暂无答案