All stories

The power of virtual preventive care in a post-COVID world

Health
Healthcare
Benefits
Preventive care
June 28, 2023

Introducing the Alpha Health Check-in

Healthcare
Women's health
June 13, 2023

Thirty years of inclusion: what it means for the future of women’s health

Women's health
Medicine
Healthcare
Clinical trials
June 7, 2023

Health equity is for everyone

Health
Health Equity
Gender equality
May 31, 2023

Gender bias in healthcare

Healthcare
Gender
Gender equality
Women's health
May 31, 2023

Reducing Healthcare Spend with Women’s Health

Health
Women's health
May 24, 2023

Gender bias in healthcare

Women's health
Gender equality
Mental health
Healthcare
May 9, 2023

Five Reasons Why Asynchronous Telemedicine is Better for Women

Healthcare
Health Equity
Women's health
Telemedicine
May 8, 2023

Help Hello Alpha help you

Health
Healthcare
Women's health
Healthy Lifestyle
May 2, 2023

Get your Zs: The Importance of Sleep Health

Women's health
Health
Sleep
Healthy Lifestyle
April 24, 2023

Supplement Savvy: What Every Woman Needs to Know

Women's health
Healthcare
Vitamins
Supplements
April 10, 2023

Our prescription philosophy

Women's health
Health
Prescription Drugs
Medication
April 6, 2023

Caring for Caregivers in the Workplace

Women's health
Caregivers
Benefits
Healthcare
March 30, 2023

Hello Alpha Reddit AMA on Weight Loss Medication

Weight Loss
Women's health
Prescription Drugs
Healthy Lifestyle
March 23, 2023

Endometriosis vs. PCOS: How they’re different

PCOS
Women's health
Endometriosis
March 20, 2023

The Next Step: Hello Alpha & Amazon Clinic

Women's health
Telemedicine
Healthcare
March 15, 2023

The History of Women’s Health

Women's health
Women's rights
Healthcare
Health Equity
March 13, 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(); });