File: //proc/self/cwd/wp-content/themes/xts-luman/framework/modules/wc-brands/templates/tab-content.php
<?php
/**
* Brands tab content template
*
* @package xts
* @version 1.0.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit( 'No direct script access allowed' );
}
?>
<?php foreach ( $brands as $slug ) : ?>
<?php $brand = get_term_by( 'slug', $slug, $attribute ); ?>
<div class="xts-product-brand-description">
<?php
if ( xts_get_opt( 'brands_attribute' ) ) {
echo do_shortcode( get_term_meta( $brand->term_id, '_xts_brand_single_product_tab_content', true ) );
} else {
echo do_shortcode( $brand->description );
}
?>
</div>
<?php endforeach; ?>