Warning: Please do not give out any FTP or ssh credentials to anyone, unless you trust them completely. Giving out login details is dangerous.
If the asker does not get an answer then they have 10 days to request a refund.
$5
Remove Gallery Tab from Media Popup
Unset for the media_upload_tabs hook seems to work for the library, but not the gallery for some reason:
function remove_media_tabs($tabs) {
unset($tabs['library']);
unset($tabs['gallery']);
return $tabs;
}
add_filter('media_upload_tabs', 'remove_media_tabs');
This works for the library tab, but not the gallery. Any ideas on how I can remove this functionality at a theme level?
This question has been answered.
ajgagnon | 11/12/11 at 10:11pm
Edit
(2) Possible Answers Submitted...
See a chronological view of answers?
Warning: Please do not give out any FTP or ssh credentials to anyone, unless you trust them completely. Giving out login details is dangerous.
-
Last edited:
11/12/11
10:20pmKailey Lampert says:Try making it run a little later
add_filter('media_upload_tabs', 'remove_media_tabs', 11);- 11/12/11 10:33pm
ajgagnon says:Aha! That did it! Been banging my head for hours on this one. Thanks Kailey.
- 11/12/11 10:33pm
-

Last edited:
11/12/11
10:30pmRomel Apuya says:try this in your functions.php
function hide_gallery()
{
echo '<style type="text/css">#gallery-settings{display:none;}</style>';
}
add_action('admin_print_styles', 'hide_gallery');Previous versions of this answer: 11/12/11 at 10:30pm
- 11/12/11 10:31pm
ajgagnon says:Thanks Romel, but I can't use css hacks for this. I'm looking for it to be a bit more secure.
- 11/12/11 10:45pm
Romel Apuya says:add_filter('media_upload_tabs', 'remove_media_tabs', 99);
- 11/12/11 10:31pm
This question has expired.
Gabriel Reguly, Sébastien | French WordpressDesigner, Julio Potier, Luis Abarca, ajgagnon voted on this question.
Current status of this question: Completed
Warning: Please do not give out any FTP or ssh credentials to anyone, unless you trust them completely. Giving out login details is dangerous.
If the asker does not get an answer then they have 10 days to request a refund.
