如何從 Woocommerce 購物車專案中取得產品變體屬性 slugs
P粉895187266
P粉895187266 2024-02-04 10:19:26
0
1
435

我需要檢查購物車以查看是否在任何產品上添加了特定的產品屬性。 (這是在掛鉤到 woocommerce_package_rates 的自訂運輸功能內。)

我有購物車中每個商品的變體 ID,但我不知道如何取得該商品的變體 slug...

foreach (WC()->cart->get_cart() as $cart_item) {

    // $product_in_cart = $cart_item['product_id'];
    
    $variation_id = $cart_item['variation_id'] > 0 ? $cart_item['variation_id'] : 
    $cart_item['product_id'];
    
    $variation = wc_get_product($variation_id);

    $variation_name = $variation->get_formatted_name(); //I want to get the slug instead.

    // if there is the swatch variation of any product in the cart.
    if (  $variation_name == 'swatch') $cart_has_swatch = "true"; 
    
}

P粉895187266
P粉895187266

全部回覆(1)
P粉600402085

你造成了一些混亂。在 WooCommerce 購物車專案:

  • 產品變體物件總是為 $cart_item['data'];
  • 可以透過 $cart_item['variation'] 存取變體屬性(這是產品屬性分類法、產品屬性 slug 值對的陣列)
  • $variation->get_formatted_name() 是產品變體名稱(已格式化),因此不是變體產品屬性。
  • 使用woocommerce_package_rates 過濾器掛鉤,使用$package['contents'] 而不是WC()->cart->get_cart()

您的問題不是很清楚,因為我們不知道您是否在屬性分類法或屬性段值中搜尋術語「樣本」。

嘗試以下操作:

add_filter( 'woocommerce_package_rates', 'filtering_woocommerce_package_rates', 10, 2 );
function filtering_woocommerce_package_rates( $rates, $package ) {
    $cart_has_swatch = false; // initializing

    // Loop through cart items in this shipping package
    foreach( $package['contents'] as $cart_item ) {
        // Check for product variation attributes
        if( ! empty($cart_item['variation']) ) {
            // Loop through product attributes for this variation
            foreach( $cart_item['variation'] as $attr_tax => $attr_slug ) {
                // Check if the world 'swatch' is found
                if ( strpos($attr_tax, 'swatch') !== false || strpos( strtolower($attr_slug), 'swatch') !== false ) {
                    $cart_has_swatch = true; // 'swatch' found
                    break; // Stop the loop
                }
            }
        }
    }

    if ( $cart_has_swatch ) {
        // Do something
    }


    return $rates;
}

它應該適合你。

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!