If you ever have a conflict with this extension causing others to not work, below is some code to fix that.
I had a conflict with FoxEE not working properly with this extension. This was the modification to Shift’s that HCC development made for me.
At line 42 of ext.shift_fckeditor.php right befor the following code:
return $r;
Add this code:
if(is_string($EXT->last_call) === TRUE) {
$r = $EXT->last_call . $r;
}
Anybody find a fix for this:Notice: Undefined property: Shift_fckeditor::$SPELL
Yeah, just go to around line 94 where you see this code:
if ($fckEnabled)
{
$r .= $DSP->input_hidden('field_ft_'.$field_id, 'none'); // Coerce fieldtype for WYSIWYG content
}
elseif ($field_query->row['field_show_fmt'] == 'y')
{
$r .= Publish::text_formatting_buttons($field_id, $field_query->row['field_fmt']); // don't have access to the "entry id", so don't know status of the field_format; hence, defaults
}
else
{
$r .= $DSP->input_hidden('field_ft_'.$field_id, $field_query->row['field_fmt']);
}
Comment it all out. You don’t need it.
Packet Tide owns and develops ExpressionEngine. © Packet Tide, All Rights Reserved.