Knowledge Base > Multi Location Inventory > Advanced Settings

Advanced Settings

Name Description
  • Disable App Completely
Self explanatory, disables the whole app. Useful when inventory preparing to go live or debugging issues to your store website.
  • Script Version
This by default will always be set to the latest version. Changing the script version may have effects on the behaviour of the app, so it is best kept to the latest.
  • Restrict App to IP Address
You can restrict the app to only show for particular IP Addresses. This is useful if you are preparing to go live.
  • Store API Token Secret
This should be kept in secret. Required when communicating with our API.
  • Custom Styling
You can insert CSS code here. Useful if you want to override default styling.
  • Custom JavaScript
You can insert JS code here. Useful if you want to add google analytics tracking.

Display Locations without Modal

/* Display locations without modal */
.multi-location-inventory--body {
    margin: 0;
}

.multi-location-inventory-main {
    display: none;
}

.multi-location-inventory-modal {
    display: block;
    position: relative;
    opacity: 1;
    padding: 0;
    visibility: visible;
    z-index: unset;
}

.multi-location-inventory-modal--data {
    border: none;
    border-radius: unset;
}

.modal-container {
    border: none !important;
}

.modal-header {
    display: none;
}

.multi-location-inventory-modal .modal-content {
    margin: 0;
    padding: 0;
    height: unset;
}

.multi-location-inventory-modal--filter {
    display: none;
}

.multi-location-inventory--header__change-location {
    display: none;
}

.multi-location-inventory-modal--data {
    height: unset;
}

@media (min-width: 1024px) {
    .multi-location-inventory-modal .modal-container {
        margin: 0;
    }
}


Did you find this article useful?