View Single Post
  #2  
Old 01-10-2008, 09:47 AM
  Jon's Avatar 
Jon Jon is offline
 

X-Guru
  
Join Date: Oct 2002
Location: Vancouver, Canada
Posts: 4,200
 

Default Re: Best Sellers on Static Page

This should do the trick.

Open pages.php

FIND:

Code:
# Assign the current location line $smarty->assign("location", $location);

BEFORE ADD:

Code:
if ($active_modules["Bestsellers"]) include $xcart_dir."/modules/Bestsellers/bestsellers.php";

In your static page use:

Code:
{if $active_modules.Bestsellers ne ""} {include file="modules/Bestsellers/bestsellers.tpl"} {else} Provide a disabled message. {/if}
Reply With Quote