• Annie

    (@mishkahinstitute)


    Hello, I am setting up a blog, and am using the Infinity Blog theme.
    for some reason, all pages created with this theme come up with author and dates in the heading banners.
    I am trying to set up an ‘About Us’ page for my blog, and I cannot figure out how to get rid of the meta info from the heading banners!
    I tried a few online tips that involved playing around with the CSS, installing meta and date removers, and using the theme editor but it either doesn’t work on pages and only works on posts, or takes away ALL meta info site-wide! I need a solution where I can take away meta info from the Pages!Ive been trying to figure this out for days and have come up with nothing.

    Please help! Thanks in advance!

Viewing 3 replies - 1 through 3 (of 3 total)
  • If you want to remove it for all pages you can do this

    .page .entry-header .inner-meta-info {
        display: none;
    }

    If you want to target a specific page or pages, you’ll need to get the page ID from the admin dashboard. Go into the dashboard and edit the page you want to hide the meta data on. When editing, look at the address bar and you should see something like the following

    /post.php?post=703&action=edit

    Where 703 is the page ID. So to hide the meta data for just that page in the CSS it would look like this

    page-id-703 .entry-header .inner-meta-info {
        display: none;
    }
    Thread Starter Annie

    (@mishkahinstitute)

    Hi, I tried that and it didn’t work. Is there anything else I can do?

    It should have worked from my testing, do you have a live site that you can link you’d want this done on so that I can check it further?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Getting rid of meta info from a single wordpress page?’ is closed to new replies.