Viewing 4 replies - 1 through 4 (of 4 total)
  • Hello Afsori.

    Should be an easy fix. Update your CSS to…

    .entry-meta .meta-sep, .entry-meta .author { display: none; }

    [added code tags around CSS – moderator]

    Cheers.

    Thread Starter Afsori

    (@afsori)

    Thanks 4 ur reply,
    but I’m completely new in CSS,
    U mean add this .entry-meta .meta-sep, .entry-meta .author { display: none; } at the end of style.CSS ???
    but it didn’t work,
    ????

    Don’t edit the theme files directly, otherwise your changes will be overwritten when the theme is updated.

    An easy way to add custom CSS is to install the Jetpack plugin and activate the Custom CSS module. You’ll then add the new CSS lorbach provided in the new stylesheet editor that’ll show up in your dashboard, under Appearance > Edit CSS.

    As alternatives, you could either install a standalone custom CSS plugin, or create a child theme.

    I was using the following code to hide author info on main and post pages in Sorbet:

    .byline {
      display: none;
    }
    
    .single .byline,
    .group-blog .byline {
      display: none;
    }

    However, author info still showed on mobile (iPhone) version. So, now I’m just hiding all entry-meta data with:

    .entry-meta {
      display: none;
    }


    [added code tags around CSS – moderator]

    I have a photoblog and entry meta not so necessary for my type of content.

    You should make changes in CSS plug-in as mentioned above.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Hide author name’ is closed to new replies.