| 1 |
<?php |
| 2 |
/** |
| 3 |
* Template variables: |
| 4 |
* |
| 5 |
* @var $controllers array Widgets/Addons Settings |
| 6 |
*/ |
| 7 |
|
| 8 |
// Do not allow directly accessing this file. |
| 9 |
if ( ! defined( 'ABSPATH' ) ) { |
| 10 |
exit( 'This script cannot be accessed directly.' ); |
| 11 |
} |
| 12 |
|
| 13 |
global $product; |
| 14 |
if ( empty( $product ) ) { |
| 15 |
return; |
| 16 |
} |
| 17 |
|
| 18 |
?> |
| 19 |
<div class="rtsb-product-additional-information"> |
| 20 |
<?php woocommerce_product_additional_information_tab(); ?> |
| 21 |
</div> |
| 22 |
|