All stories

What Women Need to Know About HIV

Women's health
STIs
March 9, 2023

In 2023, Women’s Health Is Still Shockingly Underserved

Women's health
Healthcare
February 23, 2023

Women’s Health by the Decade

Women's health
Healthy Lifestyle
Healthcare
February 22, 2023

Getting to the Heart of the Matter: Women and Heart Health

Women's health
Healthcare
Gender equality
Heart health
February 13, 2023

Dear Dr. J: What should I know about weight loss medication?

Weight Loss
Women's health
Medicine
Healthcare
February 8, 2023

Women’s health conditions that affect weight loss

Women's health
Weight Loss
PCOS
Mental health
Menopause
January 25, 2023

Let’s Stop Normalizing Painful Periods

Women's health
Periods
Period pain
June 15, 2022

Why is Emergency Contraception Still so Hard to Find?

Health
Women's health
Reproductive Health
Birth control
April 13, 2022

The secret to ending period poverty, with PERIOD.

Periods
Women's health
April 9, 2022

What is Prediabetes?

Healthcare
Diabetes
Healthy Lifestyle
April 8, 2022

Diabetes is a Women’s Health Issue

Women's health
Diabetes
Healthcare
Healthcare Technology
Health Equity
April 7, 2022

7 Stats About Healthcare, from Actual Patients

Women's health
Healthcare
Telemedicine
April 1, 2022

Managing GERD during the holiday season

Acid reflux
Alpha Medical
Nutrition
Telemedicine
October 21, 2021

Why You Should “Eat the Rainbow”

Nutrition
Healthy Lifestyle
Weight Loss
October 20, 2021

How telehealth breaks down patient barriers

Alpha Medical
Telemedicine
Healthcare
Primary care
October 11, 2021

How PCOS impacts mental health

Alpha Medical
PCOS
Mental health
Women's health
Acne
October 5, 2021

When and how to get tested for PCOS

Alpha Medical
PCOS
Acne
Women's health
Fertility
September 27, 2021

Wildfire smoke and asthma

Alpha Medical
Asthma
Telemedicine
Primary care
September 8, 2021

How does PCOS affect fertility?

PCOS
Fertility
September 1, 2021
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(); });