
Originally Posted by
sacramentojoe Hey Rob, this is an easy fix.
in your EditView.php files and DetailView.php files there is a spot that looks like this.
$xtpl=new XTemplate ('modules/Contacts/EditView.html');
All you have to do is add a check before that.
if($focus->custom_field_c == 'Realtor'){
$xtpl=new XTemplate ('modules/Contacts/RealtorEditView.html');
}elseif($focus->custom_field_c == 'Mortgage Broker'){
$xtpl=new XTemplate ('modules/Contacts/BrokerEditView.html');
}else{
$xtpl=new XTemplate ('modules/Contacts/EditView.html');
}
Do the same for DetailView.php except change out the {*}EditView.html to be {*}DetailView.html
hope this helps, let me know.
Bookmarks