PATH:
home
/
letacommog
/
supportleta
/
wp-content
/
themes
/
salient
/
woocommerce
/
single-product
/
tabs
<?php /** * Single Product tabs * * @author WooThemes * @package WooCommerce/Templates * @version 2.4.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; } /** * 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() ); global $options; $fullwidth_tabs = (!empty($options['product_tab_position']) && $options['product_tab_position'] == 'fullwidth') ? true : false; if ( ! empty( $tabs ) ) : ?> <div class="woocommerce-tabs wc-tabs-wrapper <?php if($fullwidth_tabs == true) echo 'full-width-tabs'; ?>"> <?php if($fullwidth_tabs == true) echo '<div class="full-width-content"> <div class="tab-container container">'; ?> <ul class="tabs"> <?php foreach ( $tabs as $key => $tab ) : ?> <li class="<?php echo esc_attr( $key ); ?>_tab"> <a href="#tab-<?php echo esc_attr( $key ); ?>"><?php echo apply_filters( 'woocommerce_product_' . $key . '_tab_title', $tab['title'], $key ); ?></a> </li> <?php endforeach; ?> </ul> <?php if($fullwidth_tabs == true) echo '</div></div>'; ?> <?php foreach ( $tabs as $key => $tab ) : ?> <div class="panel entry-content" id="tab-<?php echo esc_attr( $key ); ?>"> <?php call_user_func( $tab['callback'], $key, $tab ); ?> </div> <?php endforeach; ?> </div> <?php endif; ?>
[+]
..
[-] tabs.php
[edit]
[-] desktop.ini
[edit]
[-] description.php
[edit]