logo
Ask your WordPress questions! Pay money and get answers fast! (more info)

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

I'm looking to remove the Gallery tab from the media popup. When one or more images are attached to a post, the gallery tab appears. I need to completely remove that (without modifying core files, or using css hacks).

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.

  • avatar
    Last edited:
    11/12/11
    10:20pm
    Kailey 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.

  • avatar
    Last edited:
    11/12/11
    10:30pm
    Romel 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);

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.