Home › Forums › General Issues › Table Editor in Wysiwyg Editor field › Reply To: Table Editor in Wysiwyg Editor field
Hmmm I’ve used the table editor with TinyMCE advanced and ACF before, you can also edit your options yourself. You can set which default options your TinyMCE editor shows, just stick this in your functions.php and change the options accordingly.
function tinymce_buttons($buttons)
{
return array(
'bold', 'italic', 'underline', 'bullist', 'numlist', 'blockquote', 'justifyleft', 'justifycenter', 'justifyright', 'justifyfull', 'link', 'unlink', 'anchor', 'wp_more', 'wp_fullscreen', 'wp_adv'
);
}
add_filter('mce_buttons','tinymce_buttons');
function tinymce_buttons_2($buttons)
{
return array(
'formatselect', 'pastetext', 'pasteword', 'sub', 'sup', 'charmap', 'hr', 'removeformat', 'undo', 'redo', 'code'
);
}
add_filter('mce_buttons_2','tinymce_buttons_2');
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.