With TinyMCE 3.5.x the Path location option in the "Editor Appearance" section is without effect.
Apparently the option theme_advanced_path_location is no longer recognized in TinyMCE 3.5. Instead there is the option theme_advanced_statusbar_location.
This option also works for the 3.4 branch of TinyMCE (older versions not tested).

I therefore propose to change wysiwyg/editors/tinymce.inc, line 268
from
'theme_advanced_path_location' => isset($config['path_loc']) ? $config['path_loc'] : 'bottom',
to
'theme_advanced_statusbar_location' => isset($config['path_loc']) ? $config['path_loc'] : 'bottom',

Comments

TwoD’s picture

Status: Active » Closed (duplicate)

Thanks but this was already reported in #1679272: Path/statusbar location setting has no effect in TinyMCE. The patch can be tested in 6.x-2.x-dev snapshot and will be part of the 6.x-2.5 release.