Daily Multivitamin & Testosterone Booster for Men

$32.99
1 sold
Quantity
  • Description
  • Label Directions
  • Supplement Facts

Robust Daily-Multi and Powerful Testosterone Booster for Men of All Ages.* Daily-Multi Testosterone Up combines a robust male-focused multi-vitamin formula with a powerful testosterone boost to address the chief nutritional and biochemical needs of the male body—in just two easy-to-swallow soft-gels per day.*

  • Testosterone Boost – KSM-66® Ashwagandha plus elemental Boron help to support healthy hormone production and boost free testosterone levels already within the normal range.*
  • Endurance Boost – Placebo-controlled clinical research demonstrates significant increases in cardiorespiratory endurance (VO2-Max) in male athletes consuming KSM-66® Ashwagandha.*
  • Stress Support – Our Mega-B Complex combined with KSM-66® Ashwagandha help you stay grounded during a stressful day while replenishing important nutrient stores that become depleted from stress exposure.*
  • Immune Support – This formula delivers essential immune supportive nutrition including Vitamins A, C, E & D3, as well as Selenium, Boron, and Omega-3 Fatty Acids from Fish Oil and Flaxseed.*
  • Bone Health Maintenance – Vitamin D3 in combination with Vitamin K2 (as MK-7) provide essential nutrition for daily bone health maintenance.*.
(Adult) Take two (2) Liquid Soft-Gels per day with a meal and a full glass (8oz) of water.
Calories20
Total Fat1.5 g 2%**
Cholesterol5 mg 1%
Total Carbohydrates1 g <1%**
Protein1 g
Vitamin A(Retinol as Retinyl Palmitate)675 mcg RAE 75%
Vitamin C(as Ascorbic Acid)90 mg 100%
Vitamin D3(as Cholecalciferol)50 mcg 250%
Vitamin E(as d-Alpha Tocopherol)5 mg 33%
Thiamin(as Thiamine Hydrochloride)2 mg 167%
Riboflavin2 mg 154%
Niacin(as Niacinamide)50 mg 313%
Vitamin B6(as Pyridoxine Hydrochloride)10 mg 588%
Folate680 mcg DFE (400 mcg folic acid) 170%
Vitamin B12(as Methylcobalamin)50 mcg 2083%
Biotin60 mcg 200%
Pantothenic Acid(as d-Calcium Pantothenate)20 mg 400%
Magnesium(as Magnesium Hydroxide)(from Irish Seawater, Aquamin® Mg Sea Minerals)10 mg 2%
Zinc(as Zinc Picolinate)15 mg 136%
Selenium(as L-Selenomethionine)100 mcg 182%
Copper(as Copper Citrate)1 mg 111%
Manganese(as Manganese Citrate)2.3 mg 100%
Chromium(as Chromium Picolinate)120 mcg 343%
Molybdenum(as Molybdenum Citrate)45 mcg 100%
Fish Oil(18% Eicosapentaenoic Acid (EPA), 90 mg/12% Docosahexaenoic Acid (DHA), 60 mg)500 mg
Boron(as Boron Chelate)6 mg
Vitamin K2(as Menaquinone-7) (MK-7)100 mcg
BioPerine ComplexBioPerine® Black Pepper extract (95% piperine)(fruit), Ginger extract (5% gingerols)(rhizome)6 mg
KSM-66® Ashwagandha(Withania somnifera) extract (root)675 mg
Flaxseed Oil(50% Alpha Linolenic Acid (ALA), 300 mg)(seed)600 mg
Customer Reviews

Here are what our customers say.

Write a Review
Customer Reviews
Wow you reached the bottom
Newest
Most liked
Highest ratings
Lowest ratings
×
class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
The review would not show in product details on storefront since it does not support to.