16 lines
283 B
PHP
16 lines
283 B
PHP
<?php
|
|
/**
|
|
* Additional Information tab
|
|
*
|
|
* @author NasaTheme
|
|
* @package Elessi-theme/WooCommerce
|
|
* @version 3.0.0
|
|
*/
|
|
if (!defined('ABSPATH')) :
|
|
exit; // Exit if accessed directly
|
|
endif;
|
|
|
|
|
|
global $product;
|
|
do_action('woocommerce_product_additional_information', $product);
|