[Solved] Second Content Tag not displaying editable area
Posted: Thu Dec 27, 2012 9:21 pm
Upgraded to 1.11.4
In my template I have the following code:
When I go to add a new page, I am presented with the primary content area (labeled "Main Content"), and a space where the second content area should be. It is labeled correctly, "Sidebar", and there is a blank space where the textarea/editor should be, but no way to enter information.
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.
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.