
Originally Posted by
kamelion0927
Go to includes/templates/YOUR_TEMPLATE/templates/tpl_product_info_display.php and move everything between the <!--bof Add to Cart Box --> and the <!--eof Add to Cart Box --> to where you want it to be. I moved mine underneath the Attributes Module and it shows above the tabs.
In my case that blanked the page entirely! 

Originally Posted by
kamelion0927
The only thing that forces the 'Add to Cart' button below the tabs is how your product information template is set up.
That is, the order of sections. This was an incredible hint. It allowed me to try moving instead the following snippet:
PHP Code:
<?php
//BOF :: Tabbed Products Pro ::
echo '<div id="tpptabBlock" style="display:none;">' . $tabData . '</div>';
//EOF :: Tabbed Products Pro ::
?>
Just below the <!--eof Add to Cart Box--> which worked very well for me.
Thank you kamelion0927
Bookmarks