Your remaining balance will be billed in 4 payments of ${{ monthlyPayment.toFixed(2) }}.
{{widgetDescription}}
View Payment SchedulePayment Plan Schedule
{{modalDescription}}
${{totalDeposit.toFixed(2)}} will be charged now. Lift tickets will go on sale in last November. We will be staying at the slope-side Grand Summit Resort, with outdoor heated pool and hot tubs. Top-notch snowmaking, spread across 8 peaks, there is great terrain for all levels. Choose from 1- to 7-day tickets for all ages. Get Great Deals for 250 Resorts Like Sunday River XC When You Buy in Advance. Weather. Visit. Private and group lessons are available. With a Sunday River lift ticket, you can enjoy earns you access to some of the most dependable snow in the East and 131 trails. And don't worry, if your plans change you can call and they will credit the value of the lift ticket towards a future date. Maine residents are eligible to purchase Maine Student Season Passes for ages 18 and under. Visit. Does anyone know if there is place we can stop on the way to get discount lift tickets? Don't forget to submit your own Sunday River review! Please upgrade your browser or use a different browser to improve your experience. Sunday River lift ticket prices for the 2020/21 season. Save time and money when you buy your Sunday River lift tickets in advance on Liftopia. 0 Performance Equipment Rental Package Deals. The SnowSports school offers both adult and children ski and snowboard lessons. Sunday River Season Passes - More Info Convenient & easy to use. Today's Sunday River Offers. College students can stay at the Snow Cap Inn for just $89 most nights of the winter season. Find discounts & savings on lift tickets for skiing and snowboarding, tee times for golf, and lodging at Sunday River in Maine, a premier four season resort in New England The SnowSports school offers both adult and children ski and snowboard lessons. Season Pass Protection. Learn More Close. Sunday River Resort Launches New Online Lift Ticket Savings Program Adult one-day lift tickets available from $55. Dining & Shopping. Sunday River Lift Ticket Prices. Ski and stay packages, free lift tickets and free ski and snowboarding with a night’s stay, and other discount ski … At this time, this product isn't available on Liftopia. 0 Multi Day Pass Deals. Today's Sunday River Offers. Sunday River Resort Launches New Online Lift Ticket Savings Program Adult one-day lift tickets available from $55. Half day ticket pricing starts at 12:00. Events. Lift tickets, bike rentals and repair, food and beverage, and all other bike services are based out of Sunday River Sports in South Ridge Lodge. Sunday River Jan 22-24, 2021. Save money with our Frequent Skier Card, which entitles you to one free lift ticket, $25 off weekday lift tickets, and $15 off on weekends and holidays all season long. Sunday River’s 155 inches of yearly snowfall is supplemented with manmade snow. For individual and group discount lift tickets at Sunday River, look no further than GetSkiTickets.com! Weather. Nope. Lift ticket prices are often dynamic and subject to change. As of 11/16/20 all participants will need a COVID test 72 hours prior To Sunday River weekends. 0 Multi Day Pass Deals. Pre-purchasing lift tickets through Ski.com can save you up to 40 percent off window prices. Lift Tickets. We are planning on going to Sunday River tommorrow (Tuesday). Sunday River, which is the sister resort of Sugarloaf, boasts 132 trails across eight interconnected mountain peaks. Promo Code: AMEX (70 People Used) 20%. Tickets may be purchased anytime, including day-of-arrival, as long as inventory is available. Lodging Specials ... Sunday River Golf Club Scenic Lift Rides Sunday River Outfitters Events. The information here is sourced well and enriched with great visual photo and video illustrations. Read up on pros, cons and other comments in reviews left by fellow skiers and riders. Once you find the lift ticket discounts, hotel deals, equipment rentals, spa services and other trip components you're looking for, simply click through, enter your dates and follow the instructions to book directly from our trusted partners. Convenient & easy to use. Lift Tickets starting from $25 --- Sale Season Passes starting at $249 --- Sale Threedom Passes starting from $159 --- Sale ... About Sunday River. Reach out to Sunday River or visit their website for the latest lift ticket pricing, deals and discounts or to purchase lift tickets and season passes. Hello, we provide concise yet detailed articles on "Sunday Choices: Discount Sunday River Lift Tickets" topic. Save time and money when you buy your Sunday River XC lift tickets in advance on Liftopia. Sunday River Discount Lift Tickets & Ski Deals Located in Newry, Sunday River is one of Maine’s largest and most visited ski resorts. Visit. Reach out to the ski resort of interest or visit their website for the latest lift ticket pricing, deals and discounts or to purchase lift tickets … Find the latest prices and save big by bundling lodging, lift tickets, lessons & rentals into a ski package. Book now to get early bird prices. Live customer support. Limited Quantities, Book Now! !paymentDetails.length" :allow-row-selection="false" break-width="large" :headers="paymentTableHeaders" :items="paymentDetails"/>
', created() { this.dates = window.datesArray this.paymentPrices = window.priceArray this.paymentPlanProductIds = window.productArray this.modalDescription = window.modalDescription this.widgetDescription = window.widgetDescription this.buildPaymentSchedule() }, computed: { productId() { return this.$store.getters['products/selectedProduct'].Id }, selectedAttributeValueIds() { return this.selectedAttributes .filter(function (attribute) { return !attribute.IsDisabled }) .map(function (obj) { return obj.SelectedValueId; }); }, selectedAttributes() { return this.$store.getters['products/selectedProductAttributes'] }, numberOfPayments() { return this.dates.length }, isPaymentPlanProduct() { let _this = this let foundProductId = this.paymentPlanProductIds.find(function (pid) { return pid === _this.productId; }); if (foundProductId){ return true } else { return false } }, }, methods: { buildPaymentSchedule() { this.paymentDetails = [] let paymentPriceRecord = null this.totalPaymentPrice = 0 this.totalDeposit = 0 //First we must determine which of the selected attributes have payment prices and calculate a total payment price for them let _this = this this.selectedAttributeValueIds.forEach(function (attributeId, index) { paymentPriceRecord = null paymentPriceRecord = _this.paymentPrices.filter(p => { return p.id.toString() === attributeId }) if (paymentPriceRecord && paymentPriceRecord.length > 0) { _this.totalPaymentPrice += paymentPriceRecord[0].paymentPrice _this.totalDeposit += paymentPriceRecord[0].deposit } }) if (_this.totalPaymentPrice > 0) { //Determine monthly payment let thisPayment = +(_this.totalPaymentPrice / _this.dates.length) _this.monthlyPayment = Math.floor(thisPayment * 100) / 100 //Determine if there is a remainder amount _this.paymentRemainder = +(_this.totalPaymentPrice - (_this.monthlyPayment * _this.dates.length)).toFixed(2) //Then we create payment record for each configured date _this.dates.forEach(function (paymentDate, index) { if (index === _this.dates.length - 1 && _this.paymentRemainder > 0) { let lastPayment = _this.monthlyPayment + _this.paymentRemainder _this.paymentDetails.push({ date: paymentDate, amount: `$${lastPayment.toFixed(2)}` }) } else { _this.paymentDetails.push({ date: paymentDate, amount: `$${_this.monthlyPayment.toFixed(2)}` }) } }) //Add a total amount row _this.paymentDetails.push({ date: 'TOTAL', amount: `$${_this.totalPaymentPrice.toFixed(2)}` }) } }, }, watch: { selectedAttributeValueIds: { immediate: true, deep: false, handler(newValue, oldValue) { this.buildPaymentSchedule() }, }, } }) // ]]>. We are coming from Franconia,NH. Lift Tickets . Reach out to the ski resort of interest or visit their website for the latest lift ticket pricing, deals and discounts or to purchase lift tickets or season passes. Return to Sunday River, see other New England ski deals, or sign up for deal alerts below! The Liftopia Platform, a cloud-based commerce solution, makes it easy for resorts to encourage more guest visits and increase revenue by offering lift tickets and ski passes at optimized prices on their websites and on Liftopia.com. Product total with deposit: ${{(totalPaymentPrice + totalDeposit).toFixed(2)}}