[WORDPRESS] 별도의 라인에 WooCommerce 제품 크기를 표시합니다
WORDPRESS별도의 라인에 WooCommerce 제품 크기를 표시합니다
해결법
-
1.업데이트 :이 방법으로 각 차원에 대한 조건을 추가 할 수 있습니다.
업데이트 :이 방법으로 각 차원에 대한 조건을 추가 할 수 있습니다.
<?php // For non variable products (separated dimensions) if ( $display_dimensions && $product->has_dimensions() && ! $product->is_type('variable') ) : if ( ! empty( $product->get_length() ) ) { ?> <tr> <th>Length</th> <td class="product_dimensions"><?php echo $product->get_length() . get_option( 'woocommerce_dimension_unit' ); ?></td> </tr> <?php } if ( ! empty( $product->get_width() ) ) { ?> <tr> <th>Width</th> <td class="product_dimensions"><?php echo $product->get_width() . get_option( 'woocommerce_dimension_unit' ); ?></td> </tr> <?php } if ( ! empty( $product->get_height() ) ) { ?> <tr> <th>Height</th> <td class="product_dimensions"><?php echo $product->get_height() . get_option( 'woocommerce_dimension_unit' ); ?></td> </tr> <?php // For variable products (we keep the default formatted dimensions) elseif ( $display_dimensions && $product->has_dimensions() && $product->is_type('variable') ) : ?> <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; ?>
테스트하고 작동합니다.
from https://stackoverflow.com/questions/46317041/display-woocommerce-product-dimensions-in-separate-lines by cc-by-sa and MIT license
'WORDPRESS' 카테고리의 다른 글
[WORDPRESS] URL / 앵커를 기반으로 Facebook 메타 데이터를 변경하십시오 (0) | 2020.11.25 |
---|---|
[WORDPRESS] WP_NAV_MENU () 편집 그래서 LIS 대신 DIV를 인쇄합니다. (0) | 2020.11.25 |
[WORDPRESS] Pivot 테이블을 DB로 업데이트하십시오 (0) | 2020.11.25 |
[WORDPRESS] 주문이 WooCommerce에 배치되면 주문 테이블에 값을 삽입하십시오. (0) | 2020.11.25 |
[WORDPRESS] Woocommerce - 판매중인 제품 4 페이지 대신 1 페이지 표시 (0) | 2020.11.25 |