theme Simple.css

Post Reply
elpak
Sr. Bludit
Posts: 39
Joined: Wed Jan 03, 2018 10:45 am
Has thanked: 1 time

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?
User avatar
zacharielle
Ssr. Bludit
Posts: 12
Joined: Sat Jan 07, 2023 7:51 am
Has thanked: 7 times
Been thanked: 8 times

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">
Post Reply