radykal | Support Center Chooser

For which product do you need support?

Fancy Product Designer Multistep Product Configurator

Start a new topic
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?

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




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

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


Login or Signup to post a comment