Спасибо, но вы можете чуть по подробнее.
Где в этом коде вставить xml_show_item_property_id и как правильно в нем прописать id = 133 например.
Или я вообще не там смотрю?
<!-- Вывод строки со значением свойства -->
<xsl:template match="property">
<xsl:if test="value != '' or (type = 1 and file_path != '')">
<tr style="border-bottom: 1px dashed #BEBEBE;">
<td style="padding: 5px;width: 200px;" bgcolor="#eeeeee" >
<xsl:value-of select="name"/>
</td>
<td style="padding: 5px" bgcolor="#eeeeee">
<xsl:choose>
<xsl:when test="type = 1">
<a href="{file_path}">Скачать файл</a>
</xsl:when>
<xsl:when test="type = 7">
<xsl:choose>
<xsl:when test="value = 1">
<input type="checkbox" checked="" disabled="" />
</xsl:when>
<xsl:otherwise>
<input type="checkbox" disabled="" />
</xsl:otherwise>
</xsl:choose>
</xsl:when>
<xsl:otherwise>
<b><xsl:value-of disable-output-escaping="yes" select="value"/> 
<xsl:value-of select="mesure"/></b>
</xsl:otherwise>
</xsl:choose>
</td>
</tr>
</xsl:if>
</xsl:template>