Answered

Image Module - Precisely define channels for each composer

 

Hello,

we have the following problem: Some products allow all uploads (Facebook, Instagram, Pixabay). For other products we only have to allow own uploads.

It would be very helpful for each composer to define exactly which channels should be activated.

Example:
Composer 1 - only own uploads
Composer 2 - own uploads, Pixabay
Composer 3 - Pixabay, Facebook, Instagram

I hope I explained it understandably?
  • The easiest solution is to hide the not needed tabs via CSS:


    .fpd-module-tabs [data-context="upload"] {
        display: none !important;
    }
    
    .fpd-module-tabs [data-context="facebook"] {
        display: none !important;
    }
    
    .fpd-module-tabs [data-context="instagram"] {
        display: none !important;
    }
    
    .fpd-module-tabs [data-context="pixabay"] {
        display: none !important;
    }
    
    .fpd-module-tabs [data-context="depositphotos"] {
        display: none !important;
    }
    
    



  • Great, thank you very much !!! That is a great service.

Login or Signup to post a comment