Hi

Is there a way to remove some media type options? I only want my users to be able to upload videos, audio, text and images. So I need the option of URL, Documents, zoom meetings to be removed.

I have been able to do template override to do this for everything except on the /authormymedia/ page

Can someone direct me where this list populates from?

Thanks
Adina

Hi Adina,

Could you share the URL of this page?

    This message is visible to Moderators only
    hidden content
    5 days later

    Hi Adina,

    You can use the following custom CSS code to hide specific option:

    #guru-component .uk-form-controls .gru-media-tooltip #type option[value="zoom"],
    #guru-component .uk-form-controls .gru-media-tooltip #type option[value="file"]{
        display: none !important;
    }

    For example, this custom code will hide Zoom and File option.

    Regards

      5 days later
      Write a Reply...
      You need to Login to view replies.