将附加隐藏信息附加到Woocommerce订单

时间:2017-11-03 14:48:01

标签: php wordpress woocommerce cart orders

所以我在这里遇到了Woocommerce的问题。 我不知道这个问题的主题是否是解决方案,但让我解释一下我想要实现的目标。

我已创建此功能,将特定类别中购物车中产品的所有总价格合计为小计。根据该小计,用户会收到一条消息,说明用户获得的金额:

obj.foo

用户现在知道他们得到了多少。但只能在他们的购物车中。我希望能够从任何地方通过电子邮件,发票或其他任何方式拨打此金额。 我迷失在这个问题上。有没有人有解决方案?

亲切的问候

1 个答案:

答案 0 :(得分:0)

WC()->cart对象无法使用订单和电子邮件通知...因此,一旦客户结帐,您就无法使用它。

此外,对于if ( ! is_page( 'winkelmand' ) ) return;,此代码仅适用于页面'winkelmand' ...适用于订单。

下面你会发现你的重新排列的函数有3个参数:

  • $cat_id(类别ID)
  • $arg(可选:订单ID或WC_Order对象)
  • $is_email(可选:(布尔值)仅在电子邮件通知中设置为' true)

此功能有2个循环:

  • 如果未定义$arg,则可以使用购物车项目循环...
  • 如果定义了$arg(通过订单ID或订单对象),则订单项循环将起作用。

以下是您的功能代码:

function cat_sum( $cat_id, $arg = null, $is_email = false ) {
    // Will work everywhere except on page 'winkelmand'
    if ( is_page( 'winkelmand' ) ) return;

    $total_count = 0;
    $type = gettype($arg);

    // 1. WC_Cart
    if( $type == 'NULL' && gettype(WC()->cart) == 'object' && ! WC()->cart->is_empty() ){
        // Iterating through each cart item
        foreach(WC()->cart->get_cart() as $cart_item)
            if( has_term( $cat_id, 'product_cat', $cart_item['product_id'] ) )
                $total_count += $cart_item['data']->get_price() * $cart_item['quantity'];
        $is_order = false; // Not an order
    }
    // Order ID is set in $arg
    elseif( $type == 'integer' || $type == 'string' ){
        // get an instance of the WC_Order object
        $order = wc_get_order($arg);
        $is_order = true; // An order
    }
    // WC_Order Object is set in $arg
    elseif( $type == 'object' ){
        $order = $arg;
        $is_order = true; // An order
    }
    else return;

    // 2. WC_Order
    if( $is_order )
        foreach($order->get_items() as $item )
            if( has_term( $cat_id, 'product_cat', $item->get_product_id() ) )
                $total_count += $item->get_product()->get_price() * $item->get_quantity();

    // Display notice
    if ( $total_count >= 40 && $total_count <= 100 )
        $message = __( 'U krijgt bij het afhalen €10 gratis vuurwerk!' );
    elseif ( $total_count > 100 && $total_count <= 200 )
        $message = __( 'U krijgt bij het afhalen €25 gratis vuurwerk!' );
    elseif ( $total_count > 200 && $total_count <= 300 )
        $message = __( 'U krijgt bij het afhalen €50 gratis vuurwerk!' );
    elseif ( $total_count > 300 && $total_count <= 400 )
        $message = __( 'U krijgt bij het afhalen €75 gratis vuurwerk!' );
    elseif ( $total_count >= 400 )
        $message = __( 'U krijgt bij het afhalen €100 gratis vuurwerk!' );
    else return;

    if( ! $is_email ){
        wc_add_notice( $message, 'notice' );
        return $total_count;
    } else {
        return array(
            'total' => $total_count,
            'notice' => $message
        );
    }
}

代码放在活动子主题(或主题)的function.php文件中,或者放在任何插件文件中。

<强> USAGE:

1)当WC_Cart对象可用时(在客户结账之前)。您将在中使用它(例如使用&#39;服装&#39;类别)

$cat_count = cat_sum( 'clothing' );
echo '<p>'.$cat_count.'</p>';

2)当WC_Cart对象不可用时(在客户结账后)。您将需要设置订单ID或WC_Order对象,如此示例中的订单接收页面(Thankyou):

add_action( 'woocommerce_thankyou', 'cat_count_in_thankyou', 10, 1 );
function cat_count_in_thankyou( $order_id ) {
    echo '<p>'.cat_sum( 'clothing', $order_id ).'</p>';
}

代码放在活动子主题(或主题)的function.php文件中,或者放在任何插件文件中。

3)在电子邮件通知中 (WC_Cart对象不可用且不显示通知),您需要设置订单ID或WC_Order对象。对于这种情况,我们使用设置为true的第三个参数。该函数将返回一个包含类别计数和相应消息的数组(通知)。

此示例适用于电子邮件通知:

// Display the total Cat in email notifications
add_action( 'woocommerce_email_after_order_table', 'add_cat_sum_to_emails', 9, 4 );
function add_cat_sum_to_emails( $order, $sent_to_admin, $plain_text, $email ){
    $cat_sum = cat_sum( 'clothing', $order, true );
    echo '<p>Total cat: '.$cat_sum['total'].'</p>';
}

// Display the notice in email notifications
add_action( 'woocommerce_email_order_details', 'add_custom_notice_to_emails', 4, 4 );
function add_custom_notice_to_emails( $order, $sent_to_admin, $plain_text, $email ){
    $cat_sum = cat_sum( 'clothing', $order, true );
    echo '<p style="border:solid 1px #333; padding:12px;"> '.$cat_sum['notice'].'</p>';
}

代码放在活动子主题(或主题)的function.php文件中,或者放在任何插件文件中。

一切都经过测试和运作。