Search found 15 matches

by zacharielle
Sat Mar 07, 2026 10:23 am
Forum: General
Topic: Feature request
Replies: 10
Views: 5349

Re: Feature request

Hi rgrassi,
Just to let you know that it's a feature included in Dashboard from version 3.17 (released on Feb 2026)!
by zacharielle
Thu Feb 05, 2026 8:22 am
Forum: Plugins
Topic: Links V2
Replies: 1
Views: 1686

Re: Links V2

Hi NerdNexus,
Thanks! I understand this is based on the default Links plugin? Won't you prefer pushing this improvement into https://github.com/bludit/bludit/tree/v ... gins/links? Just a suggestion ;)
by zacharielle
Mon Jul 21, 2025 8:39 pm
Forum: General
Topic: Forum issue - missing functionality
Replies: 3
Views: 46570

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: 20919

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 ...
by zacharielle
Sat Jun 28, 2025 5:34 pm
Forum: General
Topic: Draft new content
Replies: 3
Views: 141833

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: 8609

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: 8171

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 ...
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: 24971

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 ...
by zacharielle
Sat May 10, 2025 8:51 am
Forum: General
Topic: Website not displaying properly
Replies: 4
Views: 64527

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" content ...
by zacharielle
Sat May 03, 2025 7:42 am
Forum: General
Topic: Add external links to the navigation menu?
Replies: 3
Views: 52012

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!