Can modify the looks of 'rich text'. Example : hide media button
Hi @sanjayatony ,
I've added crb_media_buttons_html filter (development branch) with which you can remove the media buttons from a rich_text field. This will be added in the next release.
Example:
add_filter( 'crb_media_buttons_html', function( $html, $field_name ) {
if ( $field_name === 'rich_text_field_name_here' ) {
return;
}
return $html;
}, 10, 2);
Thanks man!
Most helpful comment
Hi @sanjayatony ,
I've added
crb_media_buttons_htmlfilter (development branch) with which you can remove the media buttons from a rich_text field. This will be added in the next release.Example:
add_filter( 'crb_media_buttons_html', function( $html, $field_name ) { if ( $field_name === 'rich_text_field_name_here' ) { return; } return $html; }, 10, 2);