Remove icon and instruction
add_filter( ‘frm_filter_final_form’, ‘remove_conversational_html’, 15 ); function remove_conversational_html( $html ) { // Remove enter icons $html = preg_replace( ‘/<svg(.*?)d=”M15.3 6c0 .7-.3 1.2-.7 1.7a2.2 2.2 0 0 1-1.7.7H7.4v2.3L.6 7.5l6.8-3.2v2.3H12c.3 0 .6-.1.8-.3.3-.2.4-.5.4-.8V.7h2V6Z”(.*?)\/><\/svg>/’, ”, $html, 2 ); // Remove the “Shift+Tab” instruction $html =…Continue reading