• I need help to remove the author from the home page and posts. I’ve tried with a million different snippets of custom CSS provided in this Forum as well as the Colorlib Forum, and nothing works. I’ve also tried the WP Meta and Date Remover plugin (this doesn’t work either!!). I don’t really want to remove date, just author, but I am desperate. I have been trying for days and nothing is working.

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hey there

    @abehringer I saw your question on our support board and you already have my answer ??

    I need your answer, too!

    You can identify the class or div attached to the author element (by broser inspecting F12) ,
    for exemple :
    <span>
    <div class=”author”> your author name </div>
    </span>

    then all you need to do is add some JS or jQuery code (using a snippet or prebuild in theme)
    ——————-
    JQuery :
    jQuery(document).ready(function( $ ){
    jQuery(“span”).remove(“.author”);
    });
    ——————
    JS :
    var myobj = document.getElementByClassName(“author”);
    myobj.remove();

    Buenas tardes. Cómo elimino los datos de autor y fecha de mi página en las entradas y páginas? Puse varios plugins pero la sacar dejando el título by, o el de on…

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Remove author from home page and posts’ is closed to new replies.