All stories

How benzoyl peroxide helps fight acne

Hello Alpha Team
Skincare
Acne
Telemedicine
February 22, 2021

Benefits of niacinamide for skincare

Hello Alpha Team
Skincare
Acne
Anti-aging
February 12, 2021

Signs and symptoms of menopause

Hello Alpha Team
Menopause
Women's health
Healthcare
February 9, 2021

Dealing with hot flashes during menopause

Hello Alpha Team
Women's health
Menopause
Telemedicine
February 9, 2021

Which Types of Birth Control Don't Cause Weight Gain?

Reproductive Health
Sexual health
Women's health
January 22, 2021

Effects of sleep deprivation

Hello Alpha Team
Mental health
Sleep
Depression
January 22, 2021

The Importance of Early Screening for Cervical Cancer

Hello Alpha Team
Sexual health
Healthcare
Women's health
STIs
January 14, 2021

Hair loss in women — types, causes, and treatment

Hello Alpha Team
Women's health
Hair loss
Skincare
January 11, 2021

Is hyaluronic acid good for skin?

Skincare
Hello Alpha Team
Acne
Anti-aging
January 4, 2021

Tips for making realistic New Year’s resolutions

Hello Alpha Team
Mental health
Goals
December 28, 2020

What is Seasonal Affective Disorder (SAD)?

Hello Alpha Team
Health
Mental health
December 21, 2020

How to get treated for medical conditions online with Alpha Medical

Hello Alpha Team
Primary care
Women's health
Telemedicine
Healthcare
December 15, 2020

8 ways to take care of your mental health during the holidays

Women's health
Mental health
Hello Alpha Team
December 4, 2020

How to keep skin hydrated in the winter

Skincare
Hello Alpha Team
Acne
December 3, 2020

How Can You Boost Your Immune System?

Health
Exercise
Nutrition
Hello Alpha Team
Primary care
November 5, 2020

What is a Tretinoin Purge

Skincare
October 1, 2020

We are Alpha.

Telemedicine
Healthcare
Hello Alpha Team
Women's health
July 23, 2020

Birth Control is More Than Just Oral Contraceptives

Women's health
Birth control
Menstrual health
Periods
July 22, 2020

What are those dark spots on my cheeks? How to know when to be concerned

Skincare
Anti-aging
Acne
Dermatology
Dermatology
July 22, 2020
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(); });