• [Moderator note: moved to Fixing WordPress sub-forum]

    Hey guys,
    I have this author page, where his last posts are displayed.

    https://abenteuerwald-thale.de/author/abenteuerwald-thale/

    I want to remove the name of the author and that avatar image. Which php and which piece of code do I need to remove/change to do so?

    Or how can I create a second page, where all blog posts are displayed?

    • This topic was modified 7 years, 10 months ago by bdbrown.
Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi,

    You can hide this by putting one line CSS code into style.css “/wp-content/themes/AbenteuerwaldThale/style.css” file.
    First, please take backup of style.css file and then paste below code in the end of this file.

    /*Code starting from here*/
    .jul-content article.breadcrumbs { display: none;}
    /*Code ending here*/

    [Moderator note: code fixed. Please wrap code in the backtick character or use the code button.]

    OR

    If you want to hide this through PHP code, please upload your code at pastebin.com and share us a link here so we can let you know which code you need to remove.

    Thanks & Regards,
    TD

    • This reply was modified 7 years, 10 months ago by bdbrown.

    one line CSS code into style.css “/wp-content/themes/AbenteuerwaldThale/style.css” file

    Just a reminder that, if you edit the theme file directly, your changes will be lost when you update the theme. Other options for adding custom CSS:

    • If you have a child theme you can add the CSS to the style.css file.
    • If you are using WordPress 4.7+ you can use the “Additional CSS” option in the Customizer.
    • If your theme has a custom CSS option you can use that to add the CSS.
    • Install a plugin like https://www.ads-software.com/plugins/simple-css/.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘display all posts / remove avatar and author name from author page’ is closed to new replies.