Add Shipping class below each product in WooCommerce Shopping Cart page
问题 I've configure shipping class for my products. But I want to display them below each product in the shopping cart page. Something like this : Can this be done through editing the PHP? 回答1: To display the product shipping class name in cart page, there is many ways to do it: 1) Using a custom function hooked in woocommerce_cart_item_name filter hook, this way: add_filter( 'woocommerce_get_item_data', 'shipping_class_in_item_name', 20, 2 ); function shipping_class_in_item_name( $cart_data,