How do I hide certain features in the MarketPlace module that I don’t need?
Use the code below to hide various elements or features in the MarketPlace module that you may not need for your particular use-case.
1) Log into your App Manager and select your app.
2) Click Colors from the left-hand-side of the screen (or the middle of the screen).
3) Scroll down to the Advanced SCSS box. If there is already code in the advanced SCSS box, do not remove it. Start a new line “after” the last character in the box, then paste the above code.
/*** BEGIN: MARKETPLACE - HIDE ELEMENTS ***/
/*additional info header*/
ion-view[state="marketplace-save-store"] .list .item-divider:nth-of-type(4){
display:none;
}
/*sub title*/
ion-view[state="marketplace-save-store"] .list .item-custom.item-input:nth-of-type(9){
display:none;
}
/*description*/
ion-view[state="marketplace-save-store"] .list .item-custom.item-input:nth-of-type(10){
display:none;
}
ion-view[state="marketplace-save-store"] .list .item-custom.item-input:nth-of-type(11){
display:none;
}
ion-view[state="marketplace-save-store"] .list .item-custom.item-input:nth-of-type(12){
display:none;
}
/*add schedule*/
ion-view[state="marketplace-save-store"] .list .item-divider:nth-of-type(5){
display:none;
}
/*charge from customer bonus*/
ion-view[state="marketplace-save-store"] .list .item-custom.item-input:nth-of-type(16){
display:none;
}
/*delivey*/
ion-view[state="marketplace-save-store"] .list .item-custom.item-input:nth-of-type(17){
display:none;
}
/*pickup*/
ion-view[state="marketplace-save-store"] .list .item-custom.item-input:nth-of-type(18){
display:none;
}
/*delivery method header*/
ion-view[state="marketplace-save-store"] .list .item-divider:nth-of-type(7){
display:none;
}
/*delivery method option*/
ion-view[state="marketplace-save-store"] .list .item-custom:nth-of-type(8) {
display: none;
}
/*delivery method header*/
ion-view[state="marketplace-save-store"] .list .item-divider:nth-of-type(9){
display:none;
}
/*payment method header*/
ion-view[state="marketplace-save-store"] .list .item-custom:nth-of-type(10) {
display: none;
}
/*** END: MARKETPLACE - HIDE ELEMENTS ***/
4) Click Save.
NOTE: Remove the particular element that you want displayed from the code above.