ING Pharmaceutical Private Label
/
OC029
Antioxidant Defense Softgels – Key Health Benefits - Available for Private Label & White Label
- Supports Prostate Health – Serenoa repens (Saw Palmetto) is widely used to support prostate function and help reduce symptoms associated with benign prostatic hyperplasia (BPH), such as frequent urination.
- Provides Antioxidant Protection – Vitamin E, Selenium, and Lycopene work together to protect cells from oxidative stress, helping reduce inflammation and support long-term cellular health.
- Promotes Heart and Cellular Health – Lycopene, a powerful carotenoid, supports cardiovascular health and protects against oxidative damage to blood vessels and tissues.
- Supports Immune System Function – Selenium and Vitamin E help strengthen the immune system by supporting the activity of antioxidant enzymes and immune cells.
- Enhances Nutrient Absorption – Piper nigrum extract (Black Pepper) contains piperine, which improves the bioavailability of nutrients, especially antioxidants like lycopene and Vitamin E, for enhanced effectiveness.
- Supports Male Health and Vitality – This blend of targeted nutrients and botanicals helps maintain hormonal balance, reproductive wellness, and overall vitality in men.
Perfect for Private Label & White Label – High-quality, customizable softgels available for private label and white label branding, ensuring a market-ready product for supplement brands.
FORMULA:
Vitamin E 25 mg
Selenium 55 mcg
Lycopene 10 mg
Piper Nigrum Extract 2.5 mg
Sereona repens 160 mg
These statements have not been evaluated by the Food and Drug Administration. This product is not intended to diagnose, treat, cure, or prevent any disease.
×
Thank you. Your data has been successfully saved!
Form Description
`; productList.append(row); } $('.variant-selector').on('change', function () { const productId = $(this).data('id'); const newVariantId = $(this).val(); updateSelectedProductVariant(productId, newVariantId); }); } async function updateSelectedProductVariant(productId, newVariantId) { let selectedProducts = JSON.parse(localStorage.getItem('selectedProducts')) || []; const productIndex = selectedProducts.findIndex(p => p.id === productId); if (selectedProducts[productIndex]?.productHandle) { if (productIndex !== -1) { const variants = await getProductVariants(selectedProducts[productIndex].productHandle); const selectedVariant = variants.find(v => v.id == newVariantId); if (selectedVariant) { selectedProducts[productIndex].variant_id = selectedVariant.id; selectedProducts[productIndex].variant_title = selectedVariant.title; selectedProducts[productIndex].price = selectedVariant.price; } } } localStorage.setItem('selectedProducts', JSON.stringify(selectedProducts)); renderSelectedProducts(); } $(document).ready(function () { $('#product-search').on('input', function () { const query = $(this).val(); if (query.length > 2) { $.ajax({ url: `/search/suggest.json?q=${query}`, method: 'GET', success: function (data) { const products = data.resources.results.products; $('#search-results').empty(); if (products.length > 0) { products.forEach(product => { $('#search-results').append(`
`); }); $('#search-results').show(); } else { $('#search-results').hide(); } } }); } else { $('#search-results').hide(); } }); $(document).on('click', '.product-item', async function () { const productId = $(this).data('id'); const productTitle = $(this).data('title'); const productImage = $(this).data('image'); const productHandle = $(this).data('handle'); try { const response = await fetch(`/products/${productHandle}.json`); const data = await response.json(); if (data.product.variants.length > 0) { const firstVariant = data.product.variants[0]; // Fix incorrect reference const variantId = firstVariant.id; const variantTitle = firstVariant.title; const variantPrice = firstVariant.price; let selectedProducts = JSON.parse(localStorage.getItem('selectedProducts')) || []; let existingProduct = selectedProducts.find(p => p.variant_id === variantId); if (existingProduct) { existingProduct.quantity += 1; } else { selectedProducts.push({ id: Number(productId), title: productTitle, image: productImage, price: variantPrice, variant_id: Number(variantId), variant_title: variantTitle, productHandle: productHandle, quantity: 1 }); } localStorage.setItem('selectedProducts', JSON.stringify(selectedProducts)); renderSelectedProducts(); } } catch (error) { console.error("Error fetching variants:", error); return null; } $('#search-results').hide(); }); $(document).on('click', '.remove-product', function () { const productId = $(this).data('id'); let selectedProducts = JSON.parse(localStorage.getItem('selectedProducts')) || []; selectedProducts = selectedProducts.filter(product => product.id !== Number(productId)); localStorage.setItem('selectedProducts', JSON.stringify(selectedProducts)); renderSelectedProducts(); }); $(document).on('change', '.product-quantity', function () { let productId = $(this).data('id'); let newQuantity = parseInt($(this).val(), 10); if (newQuantity < 1) newQuantity = 1; let selectedProducts = JSON.parse(localStorage.getItem('selectedProducts')) || []; let productIndex = selectedProducts.findIndex(product => product.id === productId); if (productIndex !== -1) { selectedProducts[productIndex].quantity = newQuantity; localStorage.setItem('selectedProducts', JSON.stringify(selectedProducts)); } }); }); const hideElements = (curr_this, hideprice, pricereplace) => { let divFind; if (curr_this) { divFind = curr_this.closest('div').parent().find('div, h3, h2, a, span, ul, dl'); } else { divFind = $('.price__container'); } const cfpProductClasses = ['price', 'money']; divFind.each(function () { const class_title = $(this).attr('class'); if ($(this).attr('data-modified')) { return; } if (class_title && cfpProductClasses.some((c) => class_title.includes(c)) && !class_title.includes('price-per-item__container')) { if (hideprice) { if (pricereplace !== null && pricereplace !== '') { $(this).text(pricereplace); } else { $(this).hide(); } } if (hideprice === null || hideprice === undefined) { $(this).hide(); } // Mark this element as modified to prevent duplicate operations $(this).attr('data-modified', 'true'); } }); }; const buttonStyles = (button, data, type, curr_this, is_curr_status) => { const call = data.phonesetting ? data.phonesetting.phonenumber : ''; if (type === "Call For Email") { var $form1 = $('.Model'); var $div = $('body'); $form1.appendTo($div); button.click(function (event) { event.preventDefault(); bootstrapCSS = document.createElement("link"); bootstrapCSS.rel = "stylesheet"; bootstrapCSS.href = "https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"; document.head.appendChild(bootstrapCSS); $('.Model').css('display', 'block'); if (!is_curr_status) { const curr_href = curr_this.attr('href'); if (curr_href?.includes('products/')) { const cleanHref = curr_href.split('?')[0]; $('#product-title').hide(); $('#product-image').hide(); $('.loading-spinner').show(); RFQfunctionfetchData(cleanHref + '.json', { credentials: 'same-origin' }).then((productdata) => { const get_product_data = productdata?.product; if (get_product_data?.title) { const productTitle = get_product_data.title; const productImage = get_product_data.image?.src || "https://cdn.shopify.com/extensions/ebc56a7f-12b7-4a1f-a566-d17b534853ff/rfq-request-quote-hide-price-297/assets/no-image.jpg"; const productPrice = get_product_data.price || '$0.00'; const productId = get_product_data.id; const productVariants = get_product_data.variants || []; const productHandle = get_product_data.handle; $('#product-title').text(productTitle).show(); $('#product-image').attr('src', productImage).show(); const productList = $('#product-list'); let selectedProducts = JSON.parse(localStorage.getItem('selectedProducts')) || []; if (productVariants.length > 0) { const firstVariant = productVariants[0]; let existingProduct = selectedProducts.find(product => product.variant_id === Number(firstVariant.id)); if (existingProduct) { existingProduct.quantity += 1; } else { selectedProducts.push({ id: Number(productId), title: productTitle, image: productImage, price: firstVariant.price || productPrice, variant_id: Number(firstVariant.id), variant_title: firstVariant.title, productHandle: productHandle, quantity: 1 }); } } localStorage.setItem('selectedProducts', JSON.stringify(selectedProducts)); renderSelectedProducts(); } else { $('#product-title').hide(); $('#product-image').hide(); } }).catch(() => { $('#product-title').hide(); $('#product-image').hide(); }).finally(() => { $('.loading-spinner').hide(); }); } } else if (is_curr_status) { try { $('#product-title').hide(); $('#product-image').hide(); $('.loading-spinner').show(); const productTitle = "Antioxidant Defense Softgels White Label | Vitamin E, Selenium, Lycopene, Piper Nigrum, Sereona Repens Private Label Softgels Manufacturer"; const productImage = '//www.ingpharmaceutical.com/cdn/shop/files/OC029.png?v=1747076708&width=100' || "https://cdn.shopify.com/extensions/ebc56a7f-12b7-4a1f-a566-d17b534853ff/rfq-request-quote-hide-price-297/assets/no-image.jpg"; const productPrice = "0.00"; const productHandle = "antioxidant-defense-softgels-white-label-vitamin-e-selenium-lycopene-piper-nigrum-sereona-repens-private-label-softgels-manufacturer"; const productId = `7573834399950`; const productVariants = [{"id":43038635458766,"title":"Default Title","option1":"Default Title","option2":null,"option3":null,"sku":"OC029","requires_shipping":false,"taxable":false,"featured_image":null,"available":true,"name":"Antioxidant Defense Softgels White Label | Vitamin E, Selenium, Lycopene, Piper Nigrum, Sereona Repens Private Label Softgels Manufacturer","public_title":null,"options":["Default Title"],"price":0,"weight":0,"compare_at_price":null,"inventory_management":null,"barcode":null,"requires_selling_plan":false,"selling_plan_allocations":[]}]; const productVariantsprice = `0.00`; if (productTitle) { $('#product-title').text(productTitle).show(); $('#product-image').attr('src', productImage).show(); $('#product-price').text(productPrice).show(); const productList = $('#product-list'); let selectedProducts = JSON.parse(localStorage.getItem('selectedProducts')) || []; let existingProduct = selectedProducts.find(product => product.id === Number(productId)); if (productVariants.length > 0) { const firstVariant = productVariants[0]; let existingProduct = selectedProducts.find(product => product.variant_id === firstVariant.id); if (existingProduct) { existingProduct.quantity += 1; } else { selectedProducts.push({ id: Number(productId), title: productTitle, image: productImage, price: productVariantsprice || productPrice, variant_id: Number(firstVariant.id), variant_title: firstVariant.title, productHandle: productHandle, quantity: 1 }); } } localStorage.setItem('selectedProducts', JSON.stringify(selectedProducts)); renderSelectedProducts(); } else { $('#product-title').hide(); $('#product-image').hide(); } } catch (error) { $('#product-title').hide(); $('#product-image').hide(); } finally { $('.loading-spinner').hide(); } } }); $('.btn-close').click(function () { $('.Model').css('display', 'none'); if (bootstrapCSS) { bootstrapCSS.remove(); } }); $('.continue_button').click(function () { $('.Model').css('display', 'none'); if (bootstrapCSS) { bootstrapCSS.remove(); } }); } if (type === 'Call For Price') { button.click(function (event) { event.preventDefault(); var link = $('
', { href: 'tel:' + call }); link.get(0).click(); }) } const bgColor = data.customisebtn ? data.customisebtn.bgColor : '#000000'; const hoverBgColor = data.customisebtn ? data.customisebtn.hoverBgColor : '#FCFDFD'; const textColor = data.customisebtn ? data.customisebtn.textColor : '#FCFDFD'; const hoverTextColor = data.customisebtn ? data.customisebtn.hoverTextColor : '#000000'; button.css({ 'background-color': bgColor, 'color': textColor, }); button.hover( function () { $(this).css({ 'background-color': hoverBgColor, 'color': hoverTextColor }); }, function () { $(this).css({ 'background-color': bgColor, 'color': textColor }); } ); } const addButton = (curr_this, data, global_var, type, is_curr_status) => { let callForPriceButton = ""; let callForEmailButton = ""; const localLanguage = "es"; const Enablebtn_atc = data?.settings ? data?.settings?.disabalcheck : true; if (data?.customisebtn?.cfpBtn) { data?.customisebtn?.cfpBtn.forEach(cfpBtn => { if (cfpBtn[localLanguage]) { callForPriceButton = cfpBtn[localLanguage]?.text; } }); } else { callForPriceButton = 'Request Price by Phone'; } if (data?.customisebtn?.cfeBtn) { data?.customisebtn?.cfeBtn.forEach(cfeBtn => { if (cfeBtn[localLanguage]) { callForEmailButton = cfeBtn[localLanguage]?.text; } }); } else { callForEmailButton = 'Request Price by Email'; } const buttonText = type === "Call For Email" ? callForEmailButton : callForPriceButton; if (!is_curr_status) { const parentDiv = curr_this?.closest('div'); const parentDiv2 = curr_this?.closest('div.productgrid--item, li.bg-scheme-background,.product-grid-item,.product-block'); if (!(parentDiv2.find('.dynamic_class').length || parentDiv.find('.dynamic_class').length)) { const dyanamicdiv = $('').addClass('dynamic_class'); if (Shopify.shop == "offgridcoffeeuk.myshopify.com") { $("#nav-drawer .dynamic_class").hide(); $(".menu__item .dynamic_class").hide(); } if (Shopify.shop == "sogud4u.myshopify.com") { $('.shopify-section-header-sticky .dynamic_class .special-button').hide(); } if (Shopify.shop == "herballmedick-1.myshopify.com") { $(".dynamic_class").each(function () { if ($(this).parents("ul").length > 0) { $(this).show(); // Show if inside