There is a front end user defined as a contact in my opportunity, but I also want the additional contact info to show. Is there any way to do this?
Community
Web-Empowered Church User Community
All Categories > Ministry Tools > Servant Matcher Extension > Force Show of additional contact Info?
Total Posts: 3 - Pages (1): [1]
Temporarily solved it by commenting out plugin php lines...
foreach ($this->contactList as $con)
if ($newOpp['contact_uid'] == $con['uid']) {
//$newOpp['contact_info'] = $con['name'];
//$newOpp['contact_phone'] = $con['telephone'];
//$newOpp['contact_emailVal'] = $con['emailVal'];
//$newOpp['contact_email'] = $con['email'];
break;
}
$newOpp['skills'] = "";
foreach ($this->contactList as $con)
if ($newOpp['contact_uid'] == $con['uid']) {
//$newOpp['contact_info'] = $con['name'];
//$newOpp['contact_phone'] = $con['telephone'];
//$newOpp['contact_emailVal'] = $con['emailVal'];
//$newOpp['contact_email'] = $con['email'];
break;
}
$newOpp['skills'] = "";
Yeah, that is one approach to fix this for you. I think you may get the contact_info from the Backend record but you lose the Frontend user contact info.
I will fix this in a better way in the next version. I think one issue is that "Contact Info" can be a full description whereas the specific contact info (name/phone/email) comes from the Frontend user.
So it seems the one issue is that it seems that contact_info should be either the field from Backend record or the contact user's name/phone/email but NOT both, correct? Or are you looking for both?
-Dave
I will fix this in a better way in the next version. I think one issue is that "Contact Info" can be a full description whereas the specific contact info (name/phone/email) comes from the Frontend user.
So it seems the one issue is that it seems that contact_info should be either the field from Backend record or the contact user's name/phone/email but NOT both, correct? Or are you looking for both?
-Dave
Total Posts: 3 - Pages (1): [1]



aim