People results - Getting it to display mobile number.
Hi,
I have setup a MOSS2007 Intranet.When doing a people search the details are by default are presented in the format of:
Photo <Title> – <Full Name> - <office phone number> - <office location>
I want the persons mobiles (or Cell) number to be displayed on the results screen.I’ve taken a look in the XSL code for thePeople Search Core Results and found where the current displayed attributes are defined.
<xsl:call-template name="DisplayOfficeProfile">
<xsl:with-param name="title" select="jobtitle" />
<xsl:with-param name="dep" select="department" />
<xsl:with-param name="phone" select="workphone" />
<xsl:with-param name="office" select="officenumber" />
</xsl:call-template>
and displayed later on with:
<xsl:if test='string-length($office) > 0'>
<xsl:value-of select="$office" />
</xsl:if>
I have tried adding in mobilephone, cellphone, mobile, cell and ever other variation I can think of.
Is it possible to get the person's mobile to display on the people results page?
Thanks in advance
Dave

