| 1 |
<?php |
| 2 |
/** |
| 3 |
* Template variables: |
| 4 |
* |
| 5 |
* @var $controllers array settings as array |
| 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, $post; |
| 14 |
if ( empty( $product ) ) { |
| 15 |
return; |
| 16 |
} |
| 17 |
|
| 18 |
$layout = ! empty( $controllers['layout_style'] ) ? $controllers['layout_style'] : ''; |
| 19 |
|
| 20 |
|
| 21 |
?> |
| 22 |
|
| 23 |
<div class="rtsb-product-tabs tabs-<?php echo esc_attr( $layout ); ?>"> |
| 24 |
<?php woocommerce_output_product_data_tabs(); ?> |
| 25 |
</div> |
| 26 |
<!-- single2_rt_product_tab --> |
| 27 |
<?php |
| 28 |
|
| 29 |
|