CooperVision Biofinity® Toric Multifocal 6PK

Monthly Replacement
CA$180.00
Cooper Vision Rebate

Get a $50 rebate on annual spply. 

Compete your order to receive a separate email containing detailed instructions on how to reddem your rebate. Questions? Please contact our customer service. 

    (function(){ const TAG = 'spz-custom-lamb-add-btn'; class SpzCustomLambAddBtn extends SPZ.BaseElement { constructor(element) { super(element); this.templates_ = null; this.action_ = null; this.selected_variant = '{"id":"f8d922d5-113b-4957-a75c-bfa0b188d3fc","product_id":"8be317b9-0dd7-4b0a-85c7-b6dbe1eb7242","title":"","weight_unit":"kg","inventory_quantity":0,"sku":"","barcode":"","position":1,"option1":"","option2":"","option3":"","note":"","image":null,"wholesale_price":[{"price":180,"min_quantity":1}],"weight":"0","compare_at_price":"180","price":"180","retail_price":"180","available":true,"url":"\/products\/coopervision-biofinity\u00ae-toric-multifocal-6pk?variant=f8d922d5-113b-4957-a75c-bfa0b188d3fc","available_quantity":999999999,"options":[],"off_ratio":0,"flashsale_info":[],"sales":2}'; this.lens_process_id = ""; } buildCallback() { this.xhr_ = SPZServices.xhrFor(this.win); this.action_ = SPZServices.actionServiceForDoc(this.element); this.templates_ = SPZServices.templatesForDoc(this.element); this.getLambLensSteps_(true); this.setupAction_(); } mountCallback() { document.addEventListener('dj.variantChange', (event) => { const variant = event.detail.selected; if (variant.product_id == '8be317b9-0dd7-4b0a-85c7-b6dbe1eb7242') { this.selected_variant = JSON.stringify(variant); } }); } fetchLambLensSteps() { const lens_process_id = location.search.replace('?', '').split('&').find(v => v.includes('lens_process_id')); const template_id = location.search.replace('?', '').split('&').find(v => v.includes('template_id')); const stepsUrl = '/api/fireant/product/8be317b9-0dd7-4b0a-85c7-b6dbe1eb7242/steps' + ((lens_process_id ? `?${lens_process_id}` : '') || (template_id ? `?${template_id}` : '')); return fetch(stepsUrl).then((res)=>{ return res.json(); }).then((data)=>{ return data; }) } showProductBtn() { var addToCart = document.getElementById('add_to_cart_normal'); var productQuantityBtn = document.getElementById('product_info_quantity_normal'); addToCart && addToCart.classList.remove('hidden'); productQuantityBtn && productQuantityBtn.classList.remove('hidden'); } getLambLensSteps_(isInit) { try{ this.fetchLambLensSteps().then((data)=>{ if(data.errors) { if(isInit){ this.renderBtn(false); this.showProductBtn(); } }else{ if(isInit){ this.lens_process_id = data?.lens_process_id; let frameOnlyArr = data?.prescription_types?.options.filter((option)=>{ return option.prescription_type === 'Frame Only' }); let frameOnlyObj = frameOnlyArr.length > 0 ? frameOnlyArr[0] : {}; let available = true; if(available && (frameOnlyObj?.frame_only_display_at == 'product_detail' || frameOnlyObj?.frame_only_display_at == 'all')){ this.renderBtn({ ...frameOnlyObj, process_type: data.process_type }); }else{ this.renderBtn({ process_type: data.process_type }); } } } }); }catch(e){ this.renderBtn(false); this.showProductBtn(); } } renderBtn = (isRenderProcessBtn) => { return this.templates_ .findAndRenderTemplate(this.element, isRenderProcessBtn) .then((el) => { const children = this.element.querySelector('*:not(template)'); children && SPZCore.Dom.removeElement(children); this.element.appendChild(el); }); } handleClickFrameOnlyBtn_ = async () => { try { const reqBody = { product_id: "8be317b9-0dd7-4b0a-85c7-b6dbe1eb7242", variant_id: JSON.parse(this.selected_variant)?.id, quantity: 1, properties: { lens_processing_id: this.lens_process_id, prescription_type: "Frame Only" } } const data = await this.xhr_.fetchJson('/api/fireant/v2/customize_cart', { method: "post", body: reqBody }); if(data.state === 'success') { this.atc_loading_ = false; this.element.removeAttribute('atc-loading'); this.triggerEvent_("dj.addToCart", data); window.location.href = "/cart"; } else { this.atc_loading_ = false; this.element.removeAttribute('atc-loading'); } } catch (e) { this.atc_loading_ = false; this.element.removeAttribute('atc-loading'); const toast = SPZCore.Dom.scopedQuerySelector(document, `#error-toast`); toast && SPZ.whenApiDefined(toast).then((api) => { e.then((result)=>{ api.showToast(result?.errors[0] || 'Unknown error'); }) }); } } trackAddToCart = () => { const params = { business_type: "product_plugin", function_name: "prescription_lens", plugin_name: "prescription_lens", module: "apps", tab_name: "process_btn", event_type: "click", event_developer: "jozy", event_info: JSON.stringify({ action_type: "frame_only_add_to_cart", product_id: '"8be317b9-0dd7-4b0a-85c7-b6dbe1eb7242"', process_id: this.lens_process_id, process_type: "glasses", element_type: "button", element_name: "frame_only_btn" }) } window.spzutm && window.spzutm.registerParams('add_to_cart', params ); } setupAction_ = () => { this.registerAction('handleClickBtn', (invocation) => { this.saveAllFormProperties_(); const glassesInfo = { product:{ title: "CooperVision Biofinity\u00ae Toric Multifocal 6PK", id: "8be317b9-0dd7-4b0a-85c7-b6dbe1eb7242", image: {"src":"\/\/img.staticdj.com\/4d17776a35bafb32e3da77771eca8c13.jpeg","path":"4d17776a35bafb32e3da77771eca8c13.jpeg","width":800,"height":450,"alt":"CooperVision Biofinity\u00ae Toric Multifocal 6PK | Uni Vision","aspect_ratio":1.7777777777777777}, selected_variant: JSON.parse(this.selected_variant) }, atcType: 'add_lens' }; const tempElement = document.getElementById('process-request-script'); tempElement && SPZ.whenApiDefined(tempElement).then(async (api) => { await api.requestLensProcess(glassesInfo, invocation.args.process_type); }); setTimeout(() => { const proceeBtn = document.getElementById('lens_add_to_cart'); proceeBtn && proceeBtn.classList.remove('pointer-events-none'); }, 3000); }); this.registerAction('handleClickFrameOnlyBtn', (invocation) => { this.trackAddToCart(); this.atc_loading_ = true; this.element.setAttribute('atc-loading',""); this.handleClickFrameOnlyBtn_(); }); } saveAllFormProperties_(){ const formEntries = this.getFormData_(); const properties = this.getFormAllProperties_(formEntries); // 获取的form所有properties存全局 window.app_lamb_form_properties = properties; } getFormData_() { const form = this.element.closest("form"); const formData = new FormData(form); const formEntries = Object.fromEntries(formData.entries()); return formEntries; } getFormAllProperties_(obj){ const result = {}; Object.entries(obj).forEach(([key, value]) => { if (key.startsWith("properties")) { result[key.substring(11, key.length - 1)] = value; } }); return result; } triggerEvent_(name, params) { const event = SPZUtils.Event.create( this.win, name, params, {bubbles: true} ); this.element.dispatchEvent(event); } isLayoutSupported = (layout) => { return layout == SPZCore.Layout.CONTAINER; } } SPZ.defineElement(TAG, SpzCustomLambAddBtn) })()
    people are viewing this right now
    Best quality
    Fast delivery
    Sustainably made
    Secure payments
    Description

    Introducing the CooperVision Biofinity® Toric Multifocal 6PK, a remarkable product that brings together the comfort, proven optical designs, and trusted technology of Biofinity toric and Biofinity multifocal contact lenses. With this innovative solution, you can effortlessly fit a wide range of patients with the utmost accuracy. These toric multifocal contact lenses from CooperVision have been meticulously crafted to provide exceptional visual performance and unparalleled comfort. Designed by experts in the field, this product ensures a seamless experience for wearers, allowing them to enjoy clear and crisp vision throughout the day. The Biofinity toric multifocal 6PK is the perfect choice for those seeking optimum visual correction and ultimate convenience. Say goodbye to the hassle of switching between multiple pairs of lenses, as this all-in-one solution simplifies your daily routine. Trust the expertise of CooperVision and indulge in the Biofinity toric multifocal 6PK for a seamless blend of comfort, accuracy, and cutting-edge technology.


    Biofinity toric multifocal contact lenses from CooperVision combine the comfort, proven optical designs, and trusted technology of Biofinity toric and Biofinity multifocal contact lenses that help you fit a wide range of patients with the utmost accuracy.