FREE DELIVERY TO ALL OF CONTINENTAL US

5 Star Reviews

Industry Experts

Free Shipping

Free Color Samples

Warranty Cover
","image":{"data":"https://cdn11.bigcommerce.com/s-ljo0upzvqc/images/stencil/{:size}/q/stone-planters__59316.original.jpg","alt":"Stone Planters"},"subcategories":[],"shop_by_price":[{"url":"https://potsplantersandmore.com/stone-planters/?price_min=0&price_max=337&sort=bestselling","low":{"formatted":"$0.00","value":0,"currency":"USD"},"high":{"formatted":"$337.00","value":337,"currency":"USD"},"selected":false},{"url":"https://potsplantersandmore.com/stone-planters/?price_min=337&price_max=501&sort=bestselling","low":{"formatted":"$337.00","value":337,"currency":"USD"},"high":{"formatted":"$501.00","value":501,"currency":"USD"},"selected":false},{"url":"https://potsplantersandmore.com/stone-planters/?price_min=501&price_max=665&sort=bestselling","low":{"formatted":"$501.00","value":501,"currency":"USD"},"high":{"formatted":"$665.00","value":665,"currency":"USD"},"selected":false},{"url":"https://potsplantersandmore.com/stone-planters/?price_min=665&price_max=829&sort=bestselling","low":{"formatted":"$665.00","value":665,"currency":"USD"},"high":{"formatted":"$829.00","value":829,"currency":"USD"},"selected":false},{"url":"https://potsplantersandmore.com/stone-planters/?price_min=829&price_max=993&sort=bestselling","low":{"formatted":"$829.00","value":829,"currency":"USD"},"high":{"formatted":"$993.00","value":993,"currency":"USD"},"selected":false}]}
const productsOnPage = category?.products;
const products = [];
for (let i = 0; i < productsOnPage.length; i++) {
const product = {
productId: productsOnPage[i].id.toString(),
sku: productsOnPage[i].sku,
quantity: productsOnPage[i].quantity,
name: productsOnPage[i].name,
price: productsOnPage[i].price.without_tax.value,
brand: productsOnPage[i].brand?.name,
position: i + 1,
url: productsOnPage[i].url,
imageUrl: productsOnPage[i].image.data.replace("{:size}", "200x200"),
};
products.push(product);
}
return { products, id: category?.id?.toString(), name: category?.name };
}
function setCartToken() {
fetch("/api/storefront/cart").then(response => response.json()).then(data => {
if(data) {
const cart = data[0];
fueledClient.setFrontendStorage(window.fueledConfig['frontendStorageUrl'], cart.id);
}
});
}
})();