Skip to content
LFM01A - As Seen In
This is also available at these retailers:
- Choosing a selection results in a full page refresh.
document.addEventListener("DOMContentLoaded", function () {
let collectionToHideReviews = "lord-sugar-products";
let path = window.location.pathname;
if (path.includes("/collections/" + collectionToHideReviews)) {
let interval = setInterval(() => {
let reviewElements = document.querySelectorAll(".bv_avgRating_component_container, .bv_numReviews_component_container");
if (reviewElements.length > 0) {
reviewElements.forEach(el => el.style.display = "none");
clearInterval(interval);
}
}, 500);
}
});