Is that possible to hide filter Tab at Andvance image edit?

Posted 4 months ago by timlo88

Post a topic
Answered
t
timlo88

is that possible to hide the entire Filter Tab, or some of the filters?  by CSS?

I have to switch advance filter on to enable the Mask Crop


Many Thanks

0 Votes

rady kal

rady kal posted 3 months ago Admin Best Answer

Here is an improved CSS snippet:

.fpd-panel-advanced-editing .fpd-panel-tabs {
    display: none !important;
}


.fpd-panel-tabs-content > [data-id="filters"] {
    display: none !important;
}

.fpd-panel-tabs-content > [data-id="crop"] {
    display: block !important;
    
}

.fpd-panel-tabs-content > [data-id="crop"] > div {
    margin-bottom: 0 !important;
    padding: 10px 0;
}


0 Votes


8 Comments

Sorted by
t

timlo88 posted 3 months ago

120% thank you very much~~~

0 Votes

rady kal

rady kal posted 3 months ago Admin Answer

Here is an improved CSS snippet:

.fpd-panel-advanced-editing .fpd-panel-tabs {
    display: none !important;
}


.fpd-panel-tabs-content > [data-id="filters"] {
    display: none !important;
}

.fpd-panel-tabs-content > [data-id="crop"] {
    display: block !important;
    
}

.fpd-panel-tabs-content > [data-id="crop"] > div {
    margin-bottom: 0 !important;
    padding: 10px 0;
}


0 Votes

t

timlo88 posted 3 months ago


That hide the filter tab, but show the filter too 



Hope it will only show the crop


0 Votes

t

timlo88 posted 3 months ago

thank you very much, i was using .fpd-tool-filters{display: none !important;}


Just try your CSS, but filter main tab still here, if that possible to hide the whole filter tab and only show the Crop option?  or just simply switch Crop in the first tab? 


many thanks

0 Votes

rady kal

rady kal posted 3 months ago Admin

.fpd-panel-advanced-editing [data-tab="filters"] {
    display: none !important;
}


0 Votes

t

timlo88 posted 3 months ago

I want only the crop function tab, but disable the whole filter or disable selected filter.  Plan on Engraving business with no color filter need


if anyone has CSS example will be many thanks 

0 Votes

t

timlo88 posted 4 months ago

Is that possible to give me some example in fancy open in light box? many thanks


0 Votes

FPD Helper

FPD Helper posted 4 months ago

Yes, you can hide it with CSS. Inspect the page to get the relevant class to hide the Filers feature of advanced editing.  

0 Votes

Login or Sign up to post a comment