is_visible() || ( $_product instanceof WC_Product_Variation && ! $_product->parent_is_visible() ) ) { echo apply_filters( 'woocommerce_cart_item_name', $_product->get_title(), $cart_item, $cart_item_key ); } else { printf('%s', esc_url( get_permalink( $product_id ) ), apply_filters('woocommerce_cart_item_name', $_product->get_title(), $cart_item, $cart_item_key ) ); } // Meta data echo $woocommerce->cart->get_item_data( $cart_item ); // Backorder notification if ( $_product->backorders_require_notification() && $_product->is_on_backorder( $cart_item['quantity'] ) ) { echo '

' . __('Available on backorder', 'woocommerce') . '

'; } ?>