1

我很有趣 WooCommerce 和 WooCommerce 预订插件。在他们的文档中,有一个使用“人员”数量预订多个项目的解决方案。

所以 Bookings 插件做了什么,它将元数据广告到变体中,它还包括我们目前使用的“人员”作为预订项目数量的指标。

我们接下来要做的是从产品变体中检索元数据 [Persons] 并将其显示为项目数量。

到目前为止,我所做的是编辑 woocommerce 购物车模板并将其复制到我们的子主题中。(我们不能使用钩子,因为商店表中没有可用的钩子)。

</td>   
<!-- Use [_persons] as product quantity  -->
<td class="product-quantity--booking">
    <?php
        if ( ! empty( $cart_item['booking'] ) ) {
            echo WC()->cart->get_item_data( $cart_item );
        }
    ?>
</td>

我需要弄清楚的是,我如何过滤这些变化并只显示我需要的元数据?我只需要显示元数据“人”。

在此处输入图像描述

接下来是只过滤开始日期和结束日期以显示在其他元数据列上。

[编辑 18/02]

所以我发现我不能使用“get_item_date”,因为它不需要任何参数来显示特定值。

我尝试使用“wc_display_item_meta”,但我不知道如何选择我需要的项目。

<!-- Use ['Persons'] as product quantity  -->
<td class="product-quantity--booking">
    <?php
        if ( ! empty( $cart_item['booking'] ) ) {
            $item_meta = wc_display_item_meta( $cart_item['booking']['Persons'])
            echo $item_meta;
        }
    ?>
</td>

通过使用 vardump,我发现我需要的关键是“ ['booking']['Persons']

也许有人可以帮助我指出如何过滤数组以获取所需项目?

4

1 回答 1

3

wc_display_item_meta()功能不能用于购物车或购物车项目。它明确表示WC_Order_Itemwhere$item参数是 Order Item。

您将在源代码中看到:

/**
 * Display item meta data.
 *
 * @since  3.0.0
 * @param  WC_Order_Item $item Order Item.
 * @param  array         $args Arguments.
 * @return string|void
 */
function wc_display_item_meta( $item, $args = array() ) { /* … … */ }

因此,此功能不适用于您的情况。


怎么做(2种方式)

1) 您可以使用两个自定义挂钩函数,这将删除除“人员”之外的所有预订数据,并且将仅删除您的可预订产品的数量。

// Display only 'Persons' for bookable products
add_filter( 'woocommerce_get_item_data', 'display_only_persons_for_bookings', 20, 2 );
function display_only_persons_for_bookings( $cart_data, $cart_item ){
    // Check that is a bookable product and that is Cart page
    if( ! isset($cart_item['booking']) || ! is_cart() ) return $cart_data; // Exit
    // Loop through this cart item data
    foreach($cart_data as $key =>$values){
        // Checking that there is some data and that is Cart page
        if( ! isset($values['name']) || ! is_cart() ) return $cart_data; // Exit

        // Removing ALL displayed data except "Persons"
        if( $values['name'] != __('Persons','woocommerce') ){
            unset($cart_data[$key]);
        }
    }
    return $cart_data;
}

// Remove cart quantity for bookable products
add_filter( 'woocommerce_cart_item_quantity', 'remove_cart_quantity_for_bookings', 20, 3 );
function remove_cart_quantity_for_bookings( $product_quantity, $cart_item_key, $cart_item ){
    // Check that is a bookable product
    if( isset($cart_item['booking']) )
        $product_quantity = '';

    return $product_quantity;
}

此代码位于您的活动子主题(或主题)的 function.php 文件中。

测试和工作。

在此处输入图像描述


2) 或者您可以删除所有预订显示的元数据并在数量字段中显示“人员”:

// Remove displayed cart item meta data for bookable products
add_filter( 'woocommerce_get_item_data', 'remove_cart_data_for_bookings', 20, 2 );
function remove_cart_data_for_bookings( $cart_data, $cart_item ){
    // Check that is a bookable product and that is Cart page
    if( ! isset($cart_item['booking']) || ! is_cart() ) return $cart_data; // Exit
    // Loop through this cart item data
    foreach($cart_data as $key =>$values){
        // Removing ALL displayed data
        unset($cart_data[$key]);
    }
    return $cart_data;
}

// Add "Persons" to replace cart quantity for bookable products
add_filter( 'woocommerce_cart_item_quantity', 'replace_cart_quantity_for_bookings', 20, 3 );
function replace_cart_quantity_for_bookings( $product_quantity, $cart_item_key, $cart_item ){
    // Check that is a bookable product
    if( isset($cart_item['booking']) ){
        $product_quantity  = '<span style="text-align: center; display:inline-block;">'.$cart_item['booking']['Persons'].'<br>
        <small>(' . __('persons','woocommerce') . ')</small><span>';
    }
    return $product_quantity;
}

此代码位于您的活动子主题(或主题)的 function.php 文件中。

测试和工作

如果您只管理预订产品,您可以在模板 cart/cart.php 中将“数量”列标签重命名为“人员”(通过您的活动主题覆盖它)。

在此处输入图像描述

于 2018-02-18T20:08:06.357 回答