Hello Stackoverflow. I have the following code in a rendering, running on multiple environments:
<li class="formWWW">
<span class="formNumber"><sc:text field="Form Number" /></span>
<h4><sc:link field="URL"><sc:text field="Title" /></sc:link></h4>
<p><xsl:value-of select="sc:fld('Description', .)" /></p>
</li>
The issue I'm having involves the <sc:link>
inside the h4. On my local machine and in our development environment, it properly generates an anchor tag the way it is supposed to; however, in our QA testing environment, it seems as though <sc:link>
is just dumping the contents of the URL (General Link) field instead of rendering it as an anchor. It is very confusing since I know the renderings and the data inside the fields are both consistent among the environments.
My best guess is that there is a configuration setting somewhere relating to the behavior of <sc:link>
, but I don't know. Thank you for your time.