Thank you. I appreciate your help. BUT I added a filter to limit the number of buttons and it made no difference. Do the filters go somewhere else besides custom functions? Just to test I used this filter from the bottom of the page. My form ID is 2 - as you can see here there are tons of buttons - most of which I don’t want to allow. https://sivr.mytownvip.com/Contact/Article-Submission/
add_filter( ‘gform_rich_text_editor_buttons_2’, ‘my_function’, 10, 2 ); function my_function() { $mce_buttons = array( ‘bold’, ‘italic’, ‘bullist’ ); // Enable only Bold, Italic and Bullet List buttons return $mce_buttons; }