In my template I have the following code:
Code: Select all
{content assign=maincontent label="Main Content"}
{content block='second_block' assign=sidebar label='Sidebar'}
{if $sidebar}
<div id="sidebar">
{$sidebar}
</div>
<div id="content_2col">
{$maincontent}
</div>
{else}
<div id="content_1col">
{$maincontent}
</div>
{/if}
Firebugging it shows the textarea is there with visibility:hidden, at the element level.
I also tried adding wysiwyg='true' to the second content block, but that didn't help.
I'm using TinyMCE as the default editor in the site.
I've tried clearing the browser cache and the site cache. Still nothing.
What did I miss that would prevent this from displaying?
Thanks.