To modify existing templates, there are only 3 minor code snippets to add.
In the product info display templates:
1.This tells the product page to load the TPP module file:
FIND: <div class="centerColumn" id="productGeneral">
ABOVE THAT, ADD:
<?php
//BOF :: Tabbed Products Pro ::
require(DIR_WS_MODULES . 'tabbed_products_pro.php');
//EOF :: Tabbed Products Pro ::
?>
2. This is the location on the page where the tab block is going to be. This can be moved to other locations on the page if so desired.
FIND: <!--eof free ship icon -->
BELOW THAT, ADD:
<?php
//BOF :: Tabbed Products Pro ::
echo '<div id="tpptabBlock" style="display:none;">' . $tabData . '</div>';
//EOF :: Tabbed Products Pro ::
?>
3. This loads the final javascript to hide the non-tabbed blocks if they are already on tabs. So you don't end up with duplicate blocks.
GOTO: Bottom of the file
ADD:
<?php
//BOF :: Tabbed Products Pro ::
echo $tabjscript;
//BOF :: Tabbed Products Pro ::
?>
THAT'S IT! Now your products page should be tabbed!
Bookmarks