Quote Originally Posted by adb34 View Post
I would like to add another tab to go with Description, Details and Reviews. I have found Tabbed Products Pro v1.20-for155. Would this interfere with this template or is there a better/easier way to do it?
Quote Originally Posted by SilverHD View Post

Sorry to hear that. I was hoping someone could/would help us.

Silver
Tabbed Products Pro works if installed correctly.

As far as adding tabs in:
Code:
/includes/templates/responsive_sheffield_blue/templates/tpl_product_info_display.php
find:
PHP Code:
    <nav>
            <ul>
                <li><a href="#section-1" class="icon-description"><span><?php echo HEADER_TITLE_DESCRIPTION?></span></a></li>
                <li><a href="#section-2" class="icon-details"><span><?php echo HEADER_TITLE_DETAILS?></span></a></li>
                <li><a href="#section-3" class="icon-reviews"><span><?php echo HEADER_TITLE_REVIEWS?></span></a></li>

            </ul>
    </nav>
for every new tab add:
Code:
<li><a href="#section-4" class=""><span><?php echo 'My New Tab'; ?></span></a></li>
befor the </ul> tag, #section-4 should increase for every new tab, #section-5, #section-6 and so on

thin find:
PHP Code:
                <section id="section-3">
<!-- added for dgReview on product page -->
    <?php require($template->get_template_dir('tpl_dgReview.php'DIR_WS_TEMPLATE$current_page_base,'templates'). '/' 'tpl_dgReview.php');?>
<!-- added for dgReview on product page -->
</section>
for every tab created above a section needs to be created:
PHP Code:
                <section id="section-4">

<?php echo 'Contents of My New Tab 4'?>

                </section>
before the 2 </div> tags, section-4 should increase for every new tab, section-5, section-6 and so on