PATH:
home
/
letacommog
/
pymreception1
/
wp-content
/
themes
/
legenda
/
woocommerce
/
single-product
/
tabs
<?php /** * Single Product tabs * * @author WooThemes * @package WooCommerce/Templates * @version 2.4.0 */ 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() */ $tabs = apply_filters( 'woocommerce_product_tabs', array() ); if(!empty($tabs['additional_information'])) { $tabs['additional_information']['title'] = __('More Info', 'legenda'); } ?> <div class="tabs <?php etheme_option('tabs_type'); ?>"> <?php if ( ! empty( $tabs ) ) : ?> <?php foreach ( $tabs as $key => $tab ) : ?> <a href="#tab_<?php echo $key ?>" id="tab_<?php echo $key ?>" class="tab-title"><?php echo apply_filters( 'woocommerce_product_' . $key . '_tab_title', $tab['title'], $key ) ?></a> <div class="tab-content" id="content_tab_<?php echo $key ?>"> <?php call_user_func( $tab['callback'], $key, $tab ) ?> </div> <?php endforeach; ?> <?php endif; ?> <?php if (etheme_get_custom_field('custom_tab1_title') && etheme_get_custom_field('custom_tab1_title') != '' ) : ?> <a href="#tab_7" id="tab_7" class="tab-title"><?php etheme_custom_field('custom_tab1_title'); ?></a> <div id="content_tab_7" class="tab-content"> <?php echo do_shortcode(etheme_get_custom_field('custom_tab1')); ?> </div> <?php endif; ?> <?php if (etheme_get_option('custom_tab_title') && etheme_get_option('custom_tab_title') != '' ) : ?> <a href="#tab_9" id="tab_9" class="tab-title"><?php etheme_option('custom_tab_title'); ?></a> <div id="content_tab_9" class="tab-content"> <?php echo do_shortcode(etheme_get_option('custom_tab')); ?> </div> <?php endif; ?> </div>
[+]
..
[-] tabs.php
[edit]