1/6 ctw Round Cut Diamond and 1.45MM Sapphire Precious Insert Ring in 14K White Gold

ASHI
29778TCADFHSPWG
Rings
$1,950.00
An insert ring is a perfect choice for additional beautification of a ring. It is ideal for adding volume and a gorgeous touch to a less glamorous inner ring. With parallel running rings to offer a decorated border, insert rings are a must have in one's jewelry collection. This insert ring offers both elegance and visual appeal. It features an alternating row of half channel prong set round cut diamonds and round cut Sapphires. There is a total of 10 Sapphires in 1.45MM and 12 diamonds on both the rings together. A milgrain lining runs along the inner edges and offers a border highlight for the ring that will be inserted into the open center. The insert ring is carved in 14 karat white gold. Total diamond weight is 1/6 ctw and round cut Sapphire measures 1.45mm.

The cookie settings on this website are set to 'allow all cookies' to give you the very best experience. Please click Accept Cookies to continue to use the site.
document.addEventListener('DOMContentLoaded', function () { // Check if the customer is logged in and is placing their first order if (Shopify && Shopify.checkout && isFirstOrder()) { applyDiscountCode('1STORDER'); } }); function isFirstOrder() { // You need to implement this function based on your logic to check if it's the first order // For example, you could use local storage, cookies, or a backend call to validate // This is a dummy implementation return !localStorage.getItem('hasOrdered'); } function applyDiscountCode(discountCode) { fetch('/cart.js') .then(response => response.json()) .then(cart => { if (cart && cart.discount_code === null) { fetch('/cart/update.js', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Accept': 'application/json' }, body: JSON.stringify({ updates: {}, discount_code: discountCode }) }) .then(response => response.json()) .then(cart => { console.log('Discount code applied:', cart); // Update the UI or inform the user if necessary }); } }); } // Set localStorage after the first order is placed // You might need to call this function after a successful checkout function setFirstOrderFlag() { localStorage.setItem('hasOrdered', 'true'); }