All stories

How to Minimize Your Cold Sore Outbreak

Primary care
Cold
July 16, 2020

How to Get Rid of Acne and Blackheads

Skincare
Acne
July 16, 2020

Dry Skin is a Form of Skin Injury

Skincare
Primary care
July 16, 2020

Does Your Lifestyle Affect Your Acne?

Skincare
Acne
Healthy Lifestyle
July 16, 2020

Dating With Herpes

Primary care
STIs
Sexual health
July 16, 2020

5 Ways to Ease Migraine Pain

Migraines
Primary care
July 16, 2020

What’s the difference between a pap test and STI testing?

Alpha Medical
Women's health
Healthcare
Sexual health
STIs
July 15, 2020

What is Endometriosis?

Women's health
Telemedicine
Endometriosis
Healthcare
July 15, 2020

What is Chlamydia?

Alpha Medical
STIs
Primary care
Healthcare
July 15, 2020

The 3 types of asthma

Primary care
Asthma
Healthcare
Telemedicine
July 15, 2020

Staying connected while social distancing

Mental health
Anxiety
Alpha Medical
Depression
July 15, 2020

Self care during a pandemic

Self-care
Anxiety
Alpha Medical
Mental health
Stress
July 15, 2020

Mental Health is Women’s Health

Healthcare
Depression
Alpha Medical
Women's health
Mental health
July 15, 2020

How to prevent cold sores

Primary care
Women's health
Alpha Medical
Healthcare
July 15, 2020

How hay fever can be prevented

Alpha Medical
Healthcare
Telemedicine
Primary care
Allergies
July 15, 2020

How do STI home test kits work?

Sexual health
Health
Primary care
Alpha Medical
Women's health
July 15, 2020

How Alpha Medical can help during the pandemic

Healthcare
Alpha Medical
Telemedicine
Mental health
Pandemic
July 15, 2020

Foods that could trigger acid reflux

Alpha Medical
Acid reflux
Health
Primary care
July 15, 2020

Eliminating barriers to health care through telehealth

Telemedicine
Healthcare
Alpha Medical
Health
July 15, 2020

Diet and exercise tips for staying healthy at home

Mental health
Diet
Self-care
Alpha Medical
Exercise
July 15, 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(); });