Home › Forums › Backend Issues (wp-admin) › WYSIWYG Toolbar options missing › Reply To: WYSIWYG Toolbar options missing
Hi @redsun,
Thanks for the post.
This issue might be as a result of the code that you are using.
Please try the following snippet which makes use of the unset() function:
//removing fullscreen from basic toolbar
if( ($key = array_search('fullscreen' , $toolbars['Full' ][2])) !== false )
{
unset( $toolbars['Basic' ][2][$key] );
}
// return $toolbars - IMPORTANT!
return $toolbars;
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.