Page 1 of 1

theme Simple.css

Posted: Tue Jul 01, 2025 10:45 am
by elpak
1. How can the author of the article not be shown when publish new post? The theme is Simple.css
2. How can add images in sidebar in this theme?

Re: theme Simple.css

Posted: Wed Jul 02, 2025 1:33 pm
by zacharielle
Hi elpak,

For achieving this you'll have to edit the theme:
  1. In php/page.php, remove

    Code: Select all

    <?php include(THEME_DIR_IMG . 'icons/user.svg'); ?> <?php echo $page->username(); ?>
  2. In php/sidebar.php, add your images in HTML after

    Code: Select all

    <?php Theme::plugins('siteSidebar') ?>
    for instance

    Code: Select all

    <img src="path/to/the/image.jpg" alt="Relevant alternative text">