Dear Pascal,
1. "Each entry in the directory, I am a "contact form" instead of "Press Release" is that possible."
- go to your_site\components\com_sobipro\usr\templates\sj_information\entry\details.xsl and find:
<li data-tab="ss_press_release_tab"><a href="javascript:void(0)">Press release</a></li>
=> change : "Press release" to "contact form"
2. "I am annoyed by the display email address directly."
- go to your_site\components\com_sobipro\usr\templates\sj_information\entry\details.xsl and find:
<div class="w50">
<xsl:variable name="mailto_url">
<xsl:value-of select="entry/fields/field_email/data" />
</xsl:variable>
<span class="icon-envelope-alt"></span>
<a class="emailhref" href="mailto:{$mailto_url}">
<xsl:attribute name="title">
<xsl:value-of select="entry/fields/field_email/data" />
</xsl:attribute>
<xsl:attribute name="rel">
<xsl:value-of select="'tooltip'" />
</xsl:attribute>
<span>
<xsl:value-of select="php:function( 'SobiPro::Txt' , 'Email' )" />
</span>
</a>
</div>
=>
<!--
<div class="w50">
<xsl:variable name="mailto_url">
<xsl:value-of select="entry/fields/field_email/data" />
</xsl:variable>
<span class="icon-envelope-alt"></span>
<a class="emailhref" href="mailto:{$mailto_url}">
<xsl:attribute name="title">
<xsl:value-of select="entry/fields/field_email/data" />
</xsl:attribute>
<xsl:attribute name="rel">
<xsl:value-of select="'tooltip'" />
</xsl:attribute>
<span>
<xsl:value-of select="php:function( 'SobiPro::Txt' , 'Email' )" />
</span>
</a>
</div>
-->
4. We've checked the fields "Company tab", "Products & Services", "Media tab" etc ... with "YTshortcodes does work normally.
- example:
[button type="primary" icon="comment"] Primary [/button]
5. "I need uploder images and videos for certain entries."
- go to administrator -> sobipro -> sections -> sj information -> Section Configuration -> Fields Manager -> add new field (Field Type: image...)
Thanks!