Edit File: template-tab.php
<?php if (!defined('ABSPATH')) exit; // Exit if accessed directly /** * Template Tab * * Access original fields: $args['mod_settings'] * @author Themify */ if (TFCache::start_cache($args['mod_name'], self::$post_id, array('ID' => $args['module_ID']))): $fields_default = array( 'mod_title_tab' => '', 'layout_tab' => 'minimal', 'style_tab' => 'default', 'color_tab' => '', 'tab_appearance_tab' => '', 'tab_content_tab' => array(), 'css_tab' => '', 'animation_effect' => '', 'allow_tab_breakpoint' => '', 'tab_breakpoint'=>'' ); if (isset($args['mod_settings']['tab_appearance_tab'])) { $args['mod_settings']['tab_appearance_tab'] = self::get_checkbox_data($args['mod_settings']['tab_appearance_tab']); } $fields_args = wp_parse_args($args['mod_settings'], $fields_default); unset($args['mod_settings']); $animation_effect = self::parse_animation_effect($fields_args['animation_effect'], $fields_args); $tab_id = $args['module_ID'] . '-' . $args['builder_id']; $container_class = apply_filters('themify_builder_module_classes', array( 'module ui', 'module-' . $args['mod_name'], $args['module_ID'], $fields_args['layout_tab'], 'tab-style-' . $fields_args['style_tab'], $fields_args['tab_appearance_tab'], $fields_args['color_tab'], $fields_args['css_tab'], $animation_effect ), $args['mod_name'], $args['module_ID'], $fields_args); if(!empty($args['element_id'])){ $container_class[] = 'tb_'.$args['element_id']; } $container_props = apply_filters('themify_builder_module_container_props', array( 'id' => $tab_id, 'class' => implode(' ', $container_class), ), $fields_args, $args['mod_name'], $args['module_ID']); if ( '' !== $fields_args['allow_tab_breakpoint'] && '' !== $fields_args['tab_breakpoint'] ){ $container_props['data-tab-breakpoint'] = $fields_args['tab_breakpoint']; } ?> <!-- module tab --> <div <?php echo self::get_element_attributes(self::sticky_element_props($container_props,$fields_args)); ?>> <?php if ($fields_args['mod_title_tab'] !== ''): ?> <?php echo $fields_args['before_title'] . apply_filters('themify_builder_module_title', $fields_args['mod_title_tab'], $fields_args). $fields_args['after_title']; ?> <?php endif; ?> <div class="builder-tabs-wrap"> <span class="tab-nav-current-active"><?php echo $fields_args['tab_content_tab'][0]['title_tab'] ?></span> <ul class="tab-nav"> <?php foreach ($fields_args['tab_content_tab'] as $k => $tab): ?> <li <?php echo 0 === $k ? 'aria-expanded="true"' : 'aria-expanded="false"'; ?>> <a href="#tab-<?php echo $tab_id . '-' . $k; ?>"> <?php if (isset($tab['icon_tab'])) : ?><i class="fa <?php echo $tab['icon_tab']; ?>"></i><?php endif; ?> <span<?php if(Themify_Builder::$frontedit_active):?> contenteditable="false" data-name="title_tab" data-index="<?php echo $k?>" data-repeat="tab_content_tab" <?php endif; ?>><?php echo isset($tab['title_tab']) ? $tab['title_tab'] : ''; ?></span> </a> </li> <?php endforeach; ?> </ul> <?php foreach ($fields_args['tab_content_tab'] as $k => $tab): ?> <div id="tab-<?php echo $tab_id . '-' . $k; ?>" class="tab-content" <?php echo $k === 0 ? 'aria-hidden="false"' : 'aria-hidden="true"' ?>> <div class="tb_text_wrap<?php if(Themify_Builder::$frontedit_active):?> tb_editor_enable<?php endif; ?>"<?php if(Themify_Builder::$frontedit_active):?> contenteditable="false" data-name="title_tab" data-index="<?php echo $k?>" data-repeat="tab_content_tab"<?php endif; ?>> <?php if (isset($tab['text_tab']) && $tab['text_tab']!=='') { echo apply_filters('themify_builder_module_content', $tab['text_tab']); } ?> </div> </div> <?php endforeach; ?> </div> </div> <!-- /module tab --> <?php endif; ?> <?php TFCache::end_cache(); ?>
Back to File Manager