All stories

Anti-aging with retinol

Skincare
Anti-aging
dermatology
Dermatology
For patients
July 17, 2020

All about age spots

Skincare
dermatology
Dermatology
Anti-aging
For patients
July 17, 2020

Which Anti-Aging Creams Actually Work?

Skincare
Anti-aging
July 17, 2020

What’s in a Skincare Routine?

Skincare
July 17, 2020

What is the ‘Pull Out’ Method?

Women's health
Sexual health
Reproductive Health
July 17, 2020

What is a Tretinoin Purge

Skincare
July 17, 2020

How to Gain Weight by Using Birth Control

Women's health
Birth control
Telemedicine
July 17, 2020

Latisse vs. Castor Oil

Eyelashes
Telemedicine
July 17, 2020

Why the Skin Barrier is Important and How to Strengthen it

Skincare
Primary care
Healthy Lifestyle
July 16, 2020

Learn How to Use Your Period as a Vital Sign of Your Reproductive Health

Menstrual health
Reproductive Health
Women's health
July 16, 2020

How to Treat Herpes

Primary care
Sexual health
Healthcare
STIs
July 16, 2020

How to Treat a Cold Sore

Primary care
STIs
July 16, 2020

How to Tell if You Have Herpes

Sexual health
Primary care
STIs
July 16, 2020

How to Tell if You Have a Migraine

Migraines
Women's health
Primary care
July 16, 2020

How to Tell if You Have a Cold Sore

Sexual health
Cold
Skincare
July 16, 2020

How to Prevent Migraines

Migraines
Primary care
July 16, 2020

How to Prevent Herpes

Primary care
Sexual health
Reproductive Health
STIs
July 16, 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(); });