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.
|