View Single Post
  #4  
Old 03-24-2012, 10:28 PM
  cflsystems's Avatar 
cflsystems cflsystems is offline
 

Veteran
  
Join Date: Apr 2007
Posts: 14,201
 

Default Re: display customer reviews out of tabs

Unfortunately QT hard coded the tabs. You need to modify include/product_tabs.php and comment out the code for recommended products

Code:
if (!empty($active_modules['Recommended_Products']) && !empty($recommends)) { $product_tabs[] = array( 'title' => func_get_langvar_by_name('txt_recommends_comment'), 'tpl' => 'modules/Recommended_Products/recommends.tpl', 'anchor' => 'recommends' ); }

then in product.tpl add

Code:
{include file="modules/Recommended_Products/recommends.tpl"}

below the tabs code
__________________
Steve Stoyanov
CFLSystems.com
Web Development
Reply With Quote