default.php
31 lines
| 1 | <?php |
| 2 | /** |
| 3 | * This template will overwrite the WooCommerce file: woocommerce/single-product/tabs/additional-information.php. |
| 4 | */ |
| 5 | |
| 6 | defined('ABSPATH') || exit; |
| 7 | |
| 8 | global $product; |
| 9 | |
| 10 | $heading = apply_filters( 'woocommerce_product_additional_information_heading', esc_html__( 'Additional information', 'shopengine' ) ); |
| 11 | ?> |
| 12 | |
| 13 | <div class="shopengine"> |
| 14 | <div class="shopengine-additional-information"> |
| 15 | |
| 16 | <?php |
| 17 | |
| 18 | if($heading) : ?> |
| 19 | |
| 20 | <h2><?php echo esc_html($heading); ?></h2> <?php |
| 21 | |
| 22 | endif; |
| 23 | |
| 24 | do_action('woocommerce_product_additional_information', $product); |
| 25 | |
| 26 | ?> |
| 27 | |
| 28 | </div> |
| 29 | </div> |
| 30 | |
| 31 |