1 回答
TA贡献1816条经验 获得超6个赞
以下是有关如何按 Dokan 供应商商店名称排序和显示购物车商品的示例:
<table>
<?php
$car_items = WC()->cart->get_cart(); // Cart items
$items_sort = array(); // Initializing
// Loop through cart items
foreach ( $car_items as $cart_item_key => $cart_item ) {
// Get the vendor_id
$vendor_id = get_post_field( 'post_author', $cart_item['product_id'] );
$store_info = dokan_get_store_info( $vendor_id ); // Get the store data
$store_name = $store_info['store_name']; // Get the store name
// Set in multidimentional array the vendor and then the cart item key
$items_sort[$store_name][$cart_item_key] = $vendor_id;
}
if ( count($car_items) > 1 ) {
ksort( $items_sort ); // Sorting by vendor name
}
// 1st Loop by vendor name
foreach ( $items_sort as $store_name => $values ) {
$vendor_id = reset($values); // The vendor id
/$store_url = dokan_get_store_url( $vendor_id ); // Get the store URL (if needed)
?>
<tr>
<!-- Store name display -->
<td colspan="6" class="store-name"><strong><?php echo $store_name; ?></strong></td>
</tr>
<?php
// 2nd Loop the cart items for the vendor name
foreach( $values as $cart_item_key => $vendor_id) {
// Retreive the cart item from the cart item key
$cart_item = $car_items[$cart_item_key];
?>
<tr>
<!-- Product name display -->
<td colspan="6" class="product-name"><?php echo $cart_item['data']->get_name(); ?></td>
</tr>
<?php
} // End of 2nd Loop
} // End of 1st Loop
?>
</table>
- 1 回答
- 0 关注
- 108 浏览
添加回答
举报