HEX
Server: LiteSpeed
System: Linux vps30244.sdns.vn 3.10.0-1160.21.1.el7.x86_64 #1 SMP Tue Mar 16 18:28:22 UTC 2021 x86_64
User: admin (1001)
PHP: 7.4.30
Disabled: show_source, system, shell_exec, passthru, exec, popen, proc_open
Upload Files
File: /home/hcb48/public_html/wp-content/themes/flatsome/woocommerce/single-product/tabs/sections.php
<?php
/**
 * Single Product tabs
 *
 * @author 		WooThemes
 * @package 	WooCommerce/Templates
 * @version     2.0.0
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly
}


/**
 * Filter tabs and allow third parties to add their own
 *
 * Each tab is an array containing title, callback and priority.
 * @see woocommerce_default_product_tabs()
 */
$tabs = apply_filters( 'woocommerce_product_tabs', array() );

if ( ! empty( $tabs ) ) : ?>
<div class="product-page-sections">
	<?php foreach ( $tabs as $key => $tab ) : ?>
	<div class="product-section">
	<div class="row">
		<div class="large-2 col pb-0 mb-0">
			 <h5 class="uppercase mt"><?php echo apply_filters( 'woocommerce_product_' . $key . '_tab_title', $tab['title'], $key ) ?></h5>
		</div>

		<div class="large-10 col pb-0 mb-0">
			<div class="panel entry-content">
				<?php call_user_func( $tab['callback'], $key, $tab ) ?>
			</div>
		</div>
	</div>
	</div>
	<?php endforeach; ?>
</div>
<?php endif; ?>