View Single Post
  #3  
Old 08-29-2004, 01:48 PM
  Jon's Avatar 
Jon Jon is offline
 

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

Default

Could do it this way:

Open up your home.php

Change:
$smarty->display("customer/home.tpl");

To:

if ($partner eq "partnerid") {
$smarty->display("customer/home_partnerid.tpl");
}
else {
$smarty->display("customer/home.tpl");
}

Substitute partnerid with your partners login of course.

Then open skin1/customer/home.tpl and save it as skin1/customer/home_partnerid.tpl and then customize it and upload it.

Again, substitute the partnerid here, and you could do this for however many partners you want.
Reply With Quote