Display woocommerce product dimensions in separate lines
问题 I found the way to display the dimensions in separate lines by copy product-attributes.php file to my child-theme and replace: <?php if ( $display_dimensions && $product->has_dimensions() ) : ?> <tr> <th><?php _e( 'Dimensions', 'woocommerce' ) ?></th> <td class="product_dimensions"><?php echo esc_html( wc_format_dimensions( $product->get_dimensions( false ) ) ); ?></td> </tr> <?php endif; ?> with: <?php if ( $display_dimensions && $product->has_dimensions() ) : ?> <tr> <th>Length</th> <td