Weight Doctors Back to Home
Weight Doctors

Doctors Led Medical Weight Loss Programme

Experience breakthrough weight loss with our advanced weekly injectable treatment. Our medical team specializes in prescribing the latest FDA-approved medications that can help you achieve significant, sustainable weight loss.

Lose up to 20% with our Weight Loss Service

Manufacturer-sourced medications

Supported by clinical expertise and monthly check-ins

No hidden fees (pay-as-you-go)

Lose up to 20% of your bodyweight in a year *

-20%
Before and after weight loss transformation

Weight loss calculator

kgs lbs
94 kgs
19 kgs

*This calculator is only an example for illustrative purposes and the results are not guaranteed. Every weight loss experience is unique. This example is based on research showing weight loss of up to 20% over a 72-week period with Tirzepatide

Advanced Medical Weight Loss Treatment

Transform your weight loss journey with our cutting-edge weekly injectable treatment. This revolutionary medication works by:

  • Regulating appetite and reducing food cravings naturally

  • Improving metabolic health and blood sugar control

  • Supporting sustainable, long-term weight management

Advanced Weight Loss Treatment

Weekly Injectable Treatment

NICE UK-approved medication administered just once a week

*Results may vary. Consultation required to determine eligibility.

How it works

Get started in 3 easy steps

Choosing Weight Doctors means you're in control of your healthcare. No more dreaded busy tone or long waiting lists – we've got you covered.

1

Quick & easy questionnaire

To make sure you can safely take your preferred treatment, complete our questionnaire which takes approx 3 mins.

2

We review

Our prescribing doctors review and individually assess your treatment suitability using their extensive knowledge and clinical experience.

3

We deliver

Once approved and dispensed, we'll securely deliver your treatment using our free Royal Mail Tracked 24 option.

Medical consultation process

Simple, Transparent Pricing

Get started with your weight loss journey today with our competitive pricing options.

Starter Plan

2.5mg (4-week supply)

Save £34
£118 /first injection
  • Initial medical consultation
  • Personalized treatment plan
  • Monthly check-ins

Month 2

5mg (4-week supply)

£179 /month
  • All Starter Plan benefits
  • Nutrition guidance
  • 24/7 support

Month 3

7.5mg (4-week supply)

£199 /month
  • All Standard Plan benefits
  • Behavioral coaching
  • Priority support

*Prices checked and accurate as of June 11, 2025. Subsequent orders may vary.

Success Stories

Hear from our patients who have transformed their lives through our comprehensive weight management programs.

Emily Richardson

Emily Richardson

Lost 28kg in 10 months

"After struggling with my weight for over 15 years and trying countless diets, Weight Doctors completely changed my approach to health. Their medical team identified underlying hormonal issues that were preventing my weight loss. With their personalized plan, the weight finally came off and stayed off. I've never felt better or more confident!"

James Thompson

James Thompson

Lost 18kg in 6 months

"As a busy executive with type 2 diabetes, I needed a weight management solution that addressed my health concerns and fit my lifestyle. The team at Weight Doctors created a program specifically for me that improved my blood sugar levels while helping me lose weight. Their medical approach made all the difference—I'm now off two medications and have more energy than I've had in years."

Sarah Johnson

Sarah Johnson

Lost 15kg in 4 months

"After my pregnancy, I struggled to lose the baby weight despite being active. The nutritionist at Weight Doctors helped me understand how my body had changed and designed an eating plan that worked with my busy mom schedule. Their behavioral coaching helped me overcome emotional eating patterns. I'm now back to my pre-pregnancy weight and have tools to maintain it long-term."

Robert Wilson

Robert Wilson

Lost 22kg in 8 months

"At 65, I thought weight gain was just part of aging until my doctor referred me to Weight Doctors for my high blood pressure. Their approach was different—they looked at my medications, sleep patterns, and metabolism. Within months, I lost weight I'd been carrying for decades. My blood pressure is now normal, I've reduced my medications, and I have the energy to play with my grandchildren."

Michelle Chen

Michelle Chen

Lost 12kg in 4 months

"As someone with a hectic work schedule in finance, I struggled to find time for proper meals and exercise. Weight Doctors' program was a game-changer. Their medical approach helped regulate my appetite, and their nutritionist taught me quick, healthy meal prep strategies. The virtual consultations fit perfectly into my busy lifestyle. Now I have more energy for both work and life!"

Get in Touch

Have questions or ready to start your weight management journey? Contact our team today.

Visit Us

45 Fishergate
Preston, Lancashire PR1 8BH
United Kingdom

Clinic Hours

Monday - Friday: 8am - 6pm
Saturday: 9am - 1pm
Sunday: Closed

Call Us

+44 (0) 20 7123 4567
Toll Free: 0800 123 4567

Email Us

info@weightdoctors.co.uk
appointments@weightdoctors.co.uk

document.addEventListener('DOMContentLoaded', function() { const modal = document.getElementById('eligibility-modal'); const openModalBtn = document.getElementById('eligibility-check-btn'); const closeModalBtn = document.getElementById('close-modal'); const form = document.getElementById('eligibility-form'); const nextBtn = document.getElementById('next-step'); const prevBtn = document.getElementById('prev-step'); const progressBar = document.getElementById('progress-bar'); const stepIndicator = document.getElementById('step-indicator'); let currentStep = 1; const totalSteps = 5; function updateProgress() { const progress = (currentStep - 1) / (totalSteps - 1) * 100; progressBar.style.width = `${progress}%`; stepIndicator.textContent = `Step ${currentStep} of ${totalSteps}`; } function showStep(step) { document.querySelectorAll('.form-step').forEach(s => s.classList.remove('active')); document.querySelector(`.form-step[data-step="${step}"]`).classList.add('active'); prevBtn.classList.toggle('hidden', step === 1); nextBtn.textContent = step === totalSteps ? 'Submit' : 'Next'; updateProgress(); } function validateCurrentStep() { const currentStepElement = document.querySelector(`.form-step[data-step="${currentStep}"]`); const requiredFields = currentStepElement.querySelectorAll('[required]'); let isValid = true; requiredFields.forEach(field => { if (!field.value) { isValid = false; field.classList.add('border-red-500'); } else { field.classList.remove('border-red-500'); } }); return isValid; } function calculateBMI(weight, height) { const heightInMeters = height / 100; return (weight / (heightInMeters * heightInMeters)).toFixed(1); } function checkEligibility() { const age = parseInt(document.getElementById('age').value); const weight = parseFloat(document.getElementById('weight').value); const height = parseFloat(document.getElementById('height').value); const bmi = calculateBMI(weight, height); let isEligible = true; let message = ''; if (age < 18) { isEligible = false; message = 'We apologize, but our program is only available for adults aged 18 and above.'; } else if (bmi < 25) { isEligible = false; message = 'Based on your BMI, you are currently in a healthy weight range. We recommend maintaining your current healthy lifestyle.'; } else if (bmi > 50) { isEligible = false; message = 'Your BMI indicates that you may require specialized medical supervision. We recommend consulting with your primary care physician first.'; } return { isEligible, message, bmi }; } function showResult(eligibilityResult) { const modalContent = modal.querySelector('.modal-content'); modalContent.innerHTML = `

Assessment Results

${eligibilityResult.isEligible ? `

Congratulations! You are eligible for our weight management program.

Your BMI: ${eligibilityResult.bmi}

Our team will contact you shortly to schedule your initial consultation.

` : `

${eligibilityResult.message}

Your BMI: ${eligibilityResult.bmi}

We recommend scheduling a free consultation to discuss alternative options that might be more suitable for you.

`}
`; const closeResultBtn = document.getElementById('close-result'); closeResultBtn.addEventListener('click', () => { modal.classList.remove('active'); }); } openModalBtn.addEventListener('click', () => { modal.classList.add('active'); currentStep = 1; showStep(currentStep); }); closeModalBtn.addEventListener('click', () => { modal.classList.remove('active'); }); nextBtn.addEventListener('click', () => { if (!validateCurrentStep()) { return; } if (currentStep < totalSteps) { currentStep++; showStep(currentStep); } else { const eligibilityResult = checkEligibility(); showResult(eligibilityResult); } }); prevBtn.addEventListener('click', () => { if (currentStep > 1) { currentStep--; showStep(currentStep); } }); modal.addEventListener('click', (e) => { if (e.target === modal) { modal.classList.remove('active'); } }); });