When editing articles in the front end, the editor and the right column collides. How can this be fixed? It would be really good to be able to do this…
I got the following suggestions in another forum:
Change
<blockquote><?php if ($ja_right) { ?></blockquote>
to:
<blockquote><?php if ($ja_right && $_REQUEST[‘task’] != ‘edit’) { ?></blockquote>
or:
<blockquote><?php if ($this->countModules(‘right’) && $_REQUEST[‘task’] != ‘edit’) { ?></blockquote>
But that gives the following:
<blockquote>Notice: Undefined index: task in /home/web28764/domains/djurrattsalliansen.se/public_html/templates/ja_rochea/index.php on line 267</blockquote>
and for the second one:
<blockquote>Fatal error: Using $this when not in object context in /home/web28764/domains/djurrattsalliansen.se/public_html/templates/ja_rochea/index.php on line 267</blockquote>