• Resolved MyHairWebsite

    (@myhairwebsite)


    Is there a way to remove the “posted on” and “posted by” line that appears on portfolio posts? Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • lottiejam

    (@lottiejam)

    inspect the element using browser tools(chrome or firefox right click) find its name and use custom css

    element{
    display:none;
    }

    Thread Starter MyHairWebsite

    (@myhairwebsite)

    I changed the following code in css

    .entry-meta {
    display:none;
    }

    It appears to have solved the issue. Thanks!

    neon22

    (@neon22)

    You can also remove the associated div from the single-portfolio.php file.
    The div is the one with the class of entry-meta.
    First line is: <div class=”entry-meta”>
    last line is: </div><!– .entry-meta –>
    Advantage of this method is the data never gets sent at all. But its a tiny amount of data so that’s probably not an issue…

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Removing "Posted on" & "By"’ is closed to new replies.