🤩 File Manager - Mr.X
PHP:
8.3.33
Server:
Apache
OS:
Linux 5.14.0-611.49.1.el9_7.x86_64
User:
websparkit
Navigate
Upload:
Upload
New File
New Folder
Editing:tabs.php
<?php /** * Single Product tabs * * This template can be overridden by copying it to yourtheme/woocommerce/single-product/tabs/tabs.php. * * HOWEVER, on occasion WooCommerce will need to update template files and you * (the theme developer) will need to copy the new files to your theme to * maintain compatibility. We try to do this as little as possible, but it does * happen. When this occurs the version of the template file will be bumped and * the readme will list any important changes. * * @see https://docs.woocommerce.com/document/template-structure/ * @package WooCommerce\Templates * @version 9.6.0 * @xstore-version 9.4.7 */ 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() */ if ( apply_filters('etheme_single_product_tabs_force_load_assets', true)) etheme_enqueue_style('tabs'); if ( (get_option( 'etheme_single_product_builder', false ) || apply_filters('etheme_elementor_theme_builder', false)) && function_exists('etheme_core_hooks') ) { wc_get_template( 'single-product/tabs/single-product-builder-tabs.php' ); return; } $product_tabs = apply_filters( 'woocommerce_product_tabs', array() ); $close_tab = etheme_get_option('first_tab_closed', 0); $et_tabs['custom_tab'] = etheme_get_option( 'custom_tab_title', '' ); $et_tabs['custom_tab1'] = etheme_get_custom_field('custom_tab1_title'); $et_tabs['check'] = ( ! empty( $et_tabs['custom_tab'] ) || ! empty( $et_tabs['custom_tab1'] ) ) ? 1 : 0; $tabs_type = etheme_get_option('tabs_type', 'tabs-default'); if ( ( ! empty( $product_tabs ) || $et_tabs['check'] ) && $tabs_type != 'disable' ) : $i=0; ?> <?php if (etheme_get_option( 'single_layout', 'default' ) == 'center' && etheme_get_option('tabs_location', 'after_content') == 'after_content') : ?> <div data-vc-full-width="true" data-vc-full-width-init="false" class="vc_row wpb_row tabs-full-width"> <?php endif ?> <div class="woocommerce-tabs wc-tabs-wrapper tabs <?php etheme_option('tabs_type'); ?> <?php echo (etheme_get_option('tabs_scroll', 0) && $tabs_type == 'accordion') ? 'tabs-with-scroll' : ''; ?>"> <ul class="wc-tabs tabs-nav"> <?php foreach ( $product_tabs as $key => $product_tab ) : $i++; ?> <?php if( !isset($product_tab['callback']) || ! is_array($product_tab['callback']) && ( ! $product_tab['callback'] || ! function_exists($product_tab['callback']) ) ) continue; ?> <li <?php if($i == 1 && $close_tab) echo 'class="tab_closed"'; ?>> <a href="#tab_<?php echo esc_attr($key) ?>" id="tab_<?php echo esc_attr($key) ?>" role="tab" aria-controls="tab-<?php echo esc_attr( $key ); ?>" class="tab-title <?php if($i == 1 && !$close_tab) echo 'opened'; ?>"><span><?php echo wp_kses_post( apply_filters( 'woocommerce_product_' . $key . '_tab_title', $product_tab['title'], $key ) ); ?></span></a> </li> <?php endforeach; ?> <?php if ( $et_tabs['custom_tab1'] && $et_tabs['custom_tab1'] != '' ) : ?> <li> <a href="#tab_7" id="tab_7" role="tab" aria-controls="tab-<?php echo esc_attr( $key ); ?>" class="tab-title <?php if( empty( $product_tabs ) && ! empty( $et_tabs['custom_tab1'] ) ) echo 'opened'; ?>"><span><?php echo esc_html($et_tabs['custom_tab1']); ?></span></a> </li> <?php endif; ?> <?php if ( $et_tabs['custom_tab'] && $et_tabs['custom_tab'] != '' ) : ?> <li> <a href="#tab_9" id="tab_9" role="tab" aria-controls="tab-<?php echo esc_attr( $key ); ?>" class="tab-title <?php if( empty( $product_tabs ) && empty( $et_tabs['custom_tab1'] ) && ! empty( $et_tabs['custom_tab'] ) ) echo 'opened'; ?>"><span><?php echo esc_html($et_tabs['custom_tab']); ?></span></a> </li> <?php endif; ?> </ul> <?php $i = 0; foreach ( $product_tabs as $key => $product_tab ) : $i++; ?> <?php if( !isset($product_tab['callback']) || ! is_array($product_tab['callback']) && ( ! $product_tab['callback'] || ! function_exists($product_tab['callback']) ) ) continue; ?> <?php if ( $tabs_type == 'accordion' ) : ?> <div class="accordion-title <?php if($i == 1 && $close_tab) echo 'tab_closed'; ?>"><a href="#tab_<?php echo esc_attr($key) ?>" id="tab_<?php echo esc_attr($key) ?>" class="tab-title <?php if($i == 1 && !$close_tab) echo 'opened'; ?>"><span><?php echo wp_kses_post( apply_filters( 'woocommerce_product_' . $key . '_tab_title', $product_tab['title'], $key ) ); ?></span></a></div> <?php endif; ?> <div class="tab-content tab-<?php echo esc_attr($key) ?>" id="content_tab_<?php echo esc_attr($key) ?>" <?php if($i == 1 && !$close_tab) echo 'style="display:block;"'; ?>> <div class="tab-content-inner"> <div class="tab-content-scroll"> <?php call_user_func( $product_tab['callback'], esc_attr($key), $product_tab ) ?> </div> </div> </div> <?php endforeach; ?> <?php if ( $et_tabs['custom_tab1'] && $et_tabs['custom_tab1'] != '' ) : ?> <?php if ( $tabs_type == 'accordion' ) : ?> <div class="accordion-title"><a href="#tab_7" id="tab_7" class="tab-title <?php if( empty( $product_tabs ) && ! empty( $et_tabs['custom_tab1'] ) ) echo 'opened'; ?>"><span><?php echo esc_html($et_tabs['custom_tab1']); ?></span></a></div> <?php endif; ?> <div id="content_tab_7" class="tab-content" <?php if( empty( $product_tabs ) && ! empty( $et_tabs['custom_tab1'] ) ) echo 'style="display:block;"'; ?>> <div class="tab-content-inner"> <div class="tab-content-scroll"> <?php echo do_shortcode(etheme_get_custom_field('custom_tab1')); ?> </div> </div> </div> <?php endif; ?> <?php if ( $et_tabs['custom_tab'] && $et_tabs['custom_tab'] != '' ) : ?> <?php if ( $tabs_type == 'accordion' ) : ?> <div class="accordion-title"><a href="#tab_9" id="tab_9" class="tab-title <?php if( empty( $product_tabs ) && empty( $et_tabs['custom_tab1'] ) && ! empty( $et_tabs['custom_tab'] ) ) echo 'opened'; ?>"><span><?php echo esc_html($et_tabs['custom_tab']); ?></span></a></div> <?php endif; ?> <div id="content_tab_9" class="tab-content" <?php if( empty( $product_tabs ) && empty( $et_tabs['custom_tab1'] ) && ! empty( $et_tabs['custom_tab'] ) ) echo 'style="display:block;"'; ?>> <div class="tab-content-inner"> <div class="tab-content-scroll"> <?php echo do_shortcode(etheme_get_option('custom_tab', '')); ?> </div> </div> </div> <?php endif; ?> <?php do_action( 'woocommerce_product_after_tabs' ); ?> </div> <?php if (etheme_get_option( 'single_layout', 'default' ) == 'center' && etheme_get_option('tabs_location', 'after_content') == 'after_content' ) : ?> </div> <div class="vc_row-full-width vc_clearfix"></div> <?php // ! WC Marketplace fix ?> <?php if ( class_exists( 'WCMp_Ajax' ) ): ?> <script> jQuery(document).ready(function($) { $('.goto_more_offer_tab').on('click', function (e) { if (!$('#tab_singleproductmultivendor').hasClass('opened')) { $('#tab_singleproductmultivendor').click(); } }); }); </script> <?php endif; ?> <?php endif; ?> <?php endif; ?>
Save Changes
Cancel
Create New File
Create New Folder