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
Please add the below code in your theme functions.php,
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.
The topic ‘Remove Text Area from download’ is closed to new replies.