Image Module - Precisely define channels for each composer

Posted about 5 years ago by Andy K.

Post a topic
Answered
A
Andy K.

 

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?

0 Votes

rady kal

rady kal posted about 5 years ago Admin Best Answer

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;
}


0 Votes


2 Comments

Sorted by
A

Andy K. posted about 5 years ago


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

0 Votes

rady kal

rady kal posted about 5 years ago Admin Answer

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;
}


0 Votes

Login or Sign up to post a comment