All stories

Navigating the Migraine Maze

Migraines
Women's health
November 29, 2023

All About Oral Contraceptives

Birth control
Women's health
Reproductive Health
Sexual health
November 22, 2023

Navigating the shadows: mental health in the fall and winter

Health
Mental health
Healthcare
November 15, 2023

A Guide to Zepbound™, Approved by the FDA for Weight Loss

Weight Loss
FDA
Medicine
Prescription Drugs
Healthcare
November 8, 2023

Weight loss and sleep apnea: the power of whole-person primary care

Weight Loss
Sleep
Health
Healthcare
November 6, 2023

The high cost of GLP-1 weight loss medications: a broken system

Weight Loss
Prescription Drugs
Healthcare
Medicine
Medication
November 4, 2023

3 Takeaways from MBGH: The Obesity Conundrum

Weight Loss
Health
September 28, 2023

Dear Dr. J: What should I know about mental health?

Health
Healthcare
Mental health
Benefits
Therapy
September 8, 2023

Weight management: a guide for employers

Weight Loss
Healthcare
Women's health
Men's health
Benefits
September 8, 2023

Menopause is finally getting the spotlight

Menopause
Health
Women's health
Benefits
Healthcare
September 7, 2023

Value of Hello Alpha

Health
Healthcare
Benefits
August 30, 2023

What Happens If You Stop Taking GLP-1s?

Weight Loss
Healthcare
Women's health
Benefits
Health
July 26, 2023

Celebrating World Breastfeeding Day: Nurturing Public Health and Empowering Mothers

Women's health
Breastfeeding
Healthcare
Motherhood
July 21, 2023

Self-Care: Embrace and Energize

Health
Healthcare
Mental health
Self-care
July 7, 2023
female nurse or doctor

Get primary care today!

Get personalized care from your dedicated provider through our secure messaging platform — anywhere, anytime.
Get started
// Function to get query parameters from URL function getQueryParam(param) { const urlParams = new URLSearchParams(window.location.search); return urlParams.get(param); } // Function to hide sections if it's not Page 1 function hideTopSectionsOnPagination() { // Look for the specific pagination parameter (replace '5a0420bf_page' with your actual pagination parameter) const currentPage = getQueryParam("5a0420bf_page"); console.log("Current page:", currentPage); // Debugging: check what page we're on // Check if we're on Page 2 or greater (when currentPage is not null, it means we're on a paginated page) if (currentPage && parseInt(currentPage, 10) > 1) { console.log("Hiding top sections..."); // Debugging: if we're on page 2 or greater // Hide the top sections (adjust the selector to match your sections) const topSections = document.querySelectorAll(".top-section"); // Adjust this class if needed console.log("Top sections found:", topSections.length); // Debugging: log how many sections are found topSections.forEach(section => { section.style.display = "none"; }); } else { console.log("We're on Page 1. Top sections will not be hidden."); } } // Run the function when the page loads document.addEventListener("DOMContentLoaded", function() { console.log("Page loaded, checking pagination..."); hideTopSectionsOnPagination(); });