I created custom fields for entering URLS that would I would like to have display in the post as plain text (not converted into HTML links), but as a default it appears EE adds the <a> tag to any full URL entered (example: http://www.google.com), which creates as I’m adding them in frames. Is there any way to stop EE from adding the <a> tags to my entered URLs?
Example: (This is the snippet I’m having trouble with)
{exp:weblog:entries weblog="{my_weblog}" orderby="date" sort="desc" limit="1"}
<FRAMESET rows="40px,*" BORDER=no >
<frame src="top_frame">
<frame src="{posturl}"/>
</FRAMESET>
{/exp:weblog:entries}
Produces this:
<FRAMESET rows="40px,*" BORDER=no >
<frame src="top_frame">
<frame src="<a href="http://www.google.com">http://www.google.com</a>">
</FRAMESET>Super super thanks in advance.
Danny