HEX
Server: LiteSpeed
System: Linux linux31.centraldnserver.com 4.18.0-553.83.1.lve.el8.x86_64 #1 SMP Wed Nov 12 10:04:12 UTC 2025 x86_64
User: salamatk (1501)
PHP: 8.1.33
Disabled: show_source, system, shell_exec, passthru, exec, popen, proc_open
Upload Files
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; ?>