All stories

Wildfire smoke and asthma

Hello Alpha Team
Asthma
Telemedicine
Primary care
September 8, 2021

How does PCOS affect fertility?

PCOS
Fertility
September 1, 2021

Managing End-of-Summer Stress

Hello Alpha Team
Mental health
Stress
Health
August 30, 2021

PCOS and acne

PCOS
Hello Alpha Team
Acne
Skincare
Women's health
August 17, 2021

How to treat & prevent acne caused by masks

Hello Alpha Team
Acne
Skincare
August 13, 2021

How building muscle can help with weight loss

Hello Alpha Team
Weight Loss
Nutrition
Exercise
August 6, 2021

Why dietary supplements for weight loss may be ineffective

Hello Alpha Team
Weight Loss
Weight Loss Tips
Health
Primary care
July 9, 2021

How being overweight or obese can impact health

Nutrition
Healthcare
Mental health
June 22, 2021

What is genitourinary syndrome of menopause?

Hello Alpha Team
Menopause
Women's health
Sexual health
June 11, 2021

How to understand food nutrition labels

Nutrition
Hello Alpha Team
Health
Diet
June 11, 2021

Osteoporosis & menopause: how they’re connected, risk factors, and more

Hello Alpha Team
Menopause
Women's health
Healthcare
Osteoporosis
June 2, 2021

Endometriosis and sex: tips for relief

Hello Alpha Team
Women's health
Sexual health
Endometriosis
Health
May 30, 2021

How does menopause affect skin?

Hello Alpha Team
Women's health
Menopause
Skincare
May 21, 2021

Why fad diets don’t work for long-term weight loss

Diet
Nutrition
Weight Loss
Hello Alpha Team
Primary care
May 3, 2021

All about prescription weight loss medication

Hello Alpha Team
Nutrition
Weight Loss
Weight Loss Supplements
Primary care
April 23, 2021

What’s the difference between a dietitian and a nutritionist?

Hello Alpha Team
Primary care
Nutrition
Weight Loss
Diet
April 8, 2021

7 reasons to see a registered dietitian

Hello Alpha Team
Primary care
Nutrition
Diet
Weight Loss
April 3, 2021

How to Strengthen Your Pelvic Floor

Health
Exercise
March 19, 2021

Types of Talk Therapy

Health
Healthcare
Wellness
Therapy
March 12, 2021

Celebrating Women’s History Month

Hello Alpha Team
Women's health
March 8, 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(); });