Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
This item may ship from a different location therefore only eligible for ground shipping. Additionally, this item is not eligible for APO/FPO delivery.
STYLE IT WITH
about this product
SKU: 123081285
ITEM: WP-649-8
The Sportspower Mill Creek Canyon Wooden Swing Set will keep your kids occupied all summer long. The Finland spruce wooden frame provides stability and strength, and the swings, sand box, slide and rock climbing wall provide hours of fun. Entry handles and 6 ground anchors help to keep children safe, and the fabric canopy with awning blocks the sun's rays.
Features and Benefits
Includes 2 sling swings, an 8-foot slide, a standing swing, a rock climbing wall and a sand box
Vinyl chain covers protect hands while swinging
Fabric canopy with awning provides shade
Grab handles allow for safe entry and exit
Constructed from strong, dense Finland spruce wood
6 ground anchors help secure the set
Accommodates up to 600 pounds or about 5 children
Sand not included
Ships in 2 boxes
Specifications
Manufacturer warranty - parts: 1 year
Batteries Included: No
Activity: Backyard
Product length (ft.): 11.75
Inflatable: No
Safety perimeter (ft.): 2
Maximum weight capacity (lb.): 600
Batteries Required: No
Product Type: Swing Set
Product weight (lb.): 178
Product width (ft.): 10.17
Assembly Required: Yes
Maximum number of children: 5
Recommended ages: 3 - 8 years
Manufacturer warranty - general: 1 year
What's in the Box
Sportspower Mill Creek Canyon Wooden Swing Set
Owner's manual
function updateCustomerIdStorage() {
const sourceKey = 'aso_cdp_data';
const targetKey = 'm_cdp_customer_id';
let customerId = null;
try {
const storedValue = localStorage.getItem(sourceKey);
if (storedValue) {
const data = JSON.parse(storedValue);
customerId = data.cdpData?.customerId;
} else {
console.warn(`Source Key "${sourceKey}" not found in local storage.`);
}
} catch (error) {
console.error(`Error parsing JSON from source key "${sourceKey}":`, error);
}
if (customerId) {
localStorage.setItem(targetKey, customerId);
// console.log(`Successfully set "${targetKey}" to: ${customerId}`);
} else {
localStorage.removeItem(targetKey);
// console.log(`No customerId found. Removed key "${targetKey}" from local storage.`);
}
}
updateCustomerIdStorage();