Remove Text Area from download

Viewing 2 posts - 1 through 2 (of 2 total)
#137115

Karthik V
Participant

hi there, how can i remove the text are from add new below add title.( class wp-editor-area ) in wordpress. my client don’t have use for them. so they asked to remove it. https://drive.google.com/file/d/1I-p16Tdmt049DOHSNJTw4YOMHIrEiRnL/view?usp=sharing

#137143

Nayeem Riddhi
Moderator

Please add the below code in your theme functions.php,

add_action('init', 'wpdm_remove_support',100);
function wpdm_remove_support(){
    $post_type = 'wpdmpro';
    remove_post_type_support( $post_type, 'editor');
}

I hope it may help you.

Thanks.

Viewing 2 posts - 1 through 2 (of 2 total)

The topic ‘Remove Text Area from download’ is closed to new replies.