Remove php line with snippets
Hello, I want to remove/deactivate the wallpaper upload for users. It’s in content-edit-profile.php
I want to remove/deactivate with the "code snippets" plugin instead of using a extra child theme.
What do I have to insert? Any advice please?
Thanks!
lines/funktion to remove/deactivate/hide:
<?php
appthemes_media_manager(
$current_user->ID,
array(
'id' => 'cover_image',
'object' => 'user',
'title' => __( 'Header Cover Image', APP_TD ),
'upload_text' => __( 'Choose File', APP_TD ),
'no_media_text' => '<div class="text-muted text-small">' . __( 'No media added yet', APP_TD ) . '</div>'
),
array(
'mime_types' => 'Image',
'file_limit' => 1,
'embed_limit' => 0,
'file_size' => wp_max_upload_size(),
'delete_files' => true,
)
);
?>