Search found 13 matches

by zacharielle
Mon Jul 21, 2025 8:39 pm
Forum: General
Topic: Forum issue - missing functionality
Replies: 3
Views: 42650

Re: Forum issue - missing functionality

Hi,
So do I, it's been several weeks that the nav bar at the top doesn't show.
In case you need it, here's the link to unread posts: search.php?search_id=unreadposts
by zacharielle
Wed Jul 02, 2025 1:33 pm
Forum: Themes
Topic: theme Simple.css
Replies: 1
Views: 17499

Re: theme Simple.css

Hi elpak, For achieving this you'll have to edit the theme: In php/page.php, remove <?php include(THEME_DIR_IMG . 'icons/user.svg'); ?> <?php echo $page->username(); ?> In php/sidebar.php, add your images in HTML after <?php Theme::plugins('siteSidebar') ?> for instance <img src="path/to/the/im...
by zacharielle
Sat Jun 28, 2025 5:34 pm
Forum: General
Topic: Draft new content
Replies: 3
Views: 111274

Re: Draft new content

Thanks! I opened a Pull request that will hopefully help with this.
by zacharielle
Fri Jun 27, 2025 12:59 pm
Forum: General
Topic: getting user set timezone
Replies: 2
Views: 7157

Re: getting user set timezone

I don't think this is a user related data, rather a site config one? If this is what you are looking for there is the timezone() function from Site class you can call to get the info:

Code: Select all

<?php echo $site->timezone(); ?>
by zacharielle
Fri Jun 27, 2025 12:35 pm
Forum: General
Topic: Migrating from 3.15 to 3.16 - php version ?
Replies: 2
Views: 6304

Re: Migrating from 3.15 to 3.16 - php version ?

Hi Jeronath, Here are the docs to upgrade from the same major version: https://docs.bludit.com/en/getting-started/upgrade-guide As for the PHP requirements: https://docs.bludit.com/en/getting-started/requirements And the differencies between 3.15.0 and 3.16.2: https://github.com/bludit/bludit/compar...
by zacharielle
Sun May 11, 2025 7:25 am
Forum: General
Topic: HTML or even just a line break in Page Description?
Replies: 4
Views: 23100

Re: HTML or even just a line break in Page Description?

Hi, You can use <br> in the description field and use the htmlspecialchars_decode php function while printing this description in your theme. In your theme, find <?php echo $page->description() ?> and replace it with <?php echo htmlspecialchars_decode($page->description()) ?> For quoting, I would su...
by zacharielle
Sat May 10, 2025 8:51 am
Forum: General
Topic: Website not displaying properly
Replies: 4
Views: 63630

Re: Website not displaying properly

Hi, I used Massively theme for a project and I noticed that it was impossible to zoom on mobile devices. I found this was because of "user-scalable=no" in the viewport meta name. For better accessibility, I would recommend deleting it from your theme (index.php): <meta name="viewport&...
by zacharielle
Sat May 03, 2025 7:42 am
Forum: General
Topic: Add external links to the navigation menu?
Replies: 3
Views: 51168

Re: Add external links to the navigation menu?

Hi ramiroelliot,
I've pushed a plugin that may help you: https://plugins.bludit.com/plugin/links-anywhere
It's really the same as the Links plugin but you can display the list of links anywhere you like in your theme.
Hope this helps!
by zacharielle
Sat Apr 26, 2025 3:41 pm
Forum: General
Topic: remove post titles from index page
Replies: 1
Views: 23821

Re: remove post titles from index page

Hi lurch, You can edit the theme to achieve this: in php/home.php remove <!-- Page title --> <h2 class="post-title"> <a class="" href="<?php echo $page->permalink(); ?>"><?php echo $page->title(); ?></a> </h2> and in php/page.php remove <!-- Page title --> <h1 class=&qu...
by zacharielle
Fri Apr 25, 2025 7:30 pm
Forum: Themes
Topic: Clean Blog
Replies: 2
Views: 253142

Re: Clean Blog

Hallo Wolfgang!
The plugins you mention are called by the siteSidebar hook. My suggestion would be that you add

Code: Select all

<?php Theme::plugins('siteSidebar') ?>
in the index.php page of the theme. You would probably need some CSS tuning!