很抱歉,我是一个绝对的初学者。我想在Woocommerce结帐页面的订单查看中替换产品数量,而是显示产品属性值。我根本不想显示产品数量。
<div class="product-info">
<?php echo '<h4>' . apply_filters( 'woocommerce_cart_item_name', $_product->get_name(), $cart_item, $cart_item_key ) . ' '; ?>
<?php echo apply_filters( 'woocommerce_checkout_cart_item_quantity', ' <span class="product-quantity">' . __('Quantity: ',NECTAR_THEME_NAME) . $cart_item['quantity'] . '</span></h4>', $cart_item, $cart_item_key ); ?>