hahacc
Forum Replies Created
-
One nuisance about wordpress “Distraction-Free Writing mode” is that, sink kitchen buttons will not show up in that mode. To resolve this, we need add the following code to functions.php of your theme:
function my_mce_fullscreen($buttons) {
$buttons[] = ‘fullscreen’;
return $buttons;
}
add_filter(‘mce_buttons’, ‘my_mce_fullscreen’);More details can be found here: resolved – show kitchen sink buttons when wordpress goes to fullscreen mode
One nuisance about wordpress “Distraction-Free Writing mode” is that, sink kitchen buttons will not show up in that mode. To resolve this, we need add the following code to functions.php of your theme:
function my_mce_fullscreen($buttons) {
$buttons[] = ‘fullscreen’;
return $buttons;
}
add_filter(‘mce_buttons’, ‘my_mce_fullscreen’);More details can be found here: resolved – show kitchen sink buttons when wordpress goes to fullscreen mode
Forum: Fixing WordPress
In reply to: how to show "select text color" button when in fullscreen modeOk guys,
I found the workaround for this:Add following code to your theme’s functions.php:
add_filter(‘mce_buttons’, ‘my_mce_buttons’);
function my_mce_buttons($buttons) {
$buttons[] = ‘fullscreen’;
return $buttons;
}Later, click the second full-screen button on TinyMCE editor(do not click the first one), and you’ll see that all buttons, includes kitchen sink ones, are showed.
You can find more details in this article resolved – show kitchen sink buttons when wordpress goes to fullscreen mode
PS:
Some one may say that press alt+shift+G will do the trick. However, I tried and not worked. I think wordpress has now disable this shortcut key.Forum: Fixing WordPress
In reply to: how to show "select text color" button when in fullscreen modeOr describe this briefly:
How to show “Kitchen Sink” of TinyMCE when wordpress is in full-screen mode?