Search found 39 matches

by SpegalDev
Tue Feb 11, 2025 9:52 pm
Forum: Themes
Topic: darktheme
Replies: 1
Views: 56553

Re: darktheme

Yep. Alternatively, you could leave the code there, just comment it out so it isn't shown. That way you can enable it again in the future if you wish.

Code: Select all

<?php //echo $page->date(); ?> 
by SpegalDev
Wed Jan 08, 2025 7:40 pm
Forum: Show your Bludit-Website!
Topic: BrighterShores.Pro
Replies: 0
Views: 51291

BrighterShores.Pro

I thought I'd share one of my sites here—it's a fansite for the game Brighter Shores . It features guides, news, and various tools for the game. The site is built on Bludit, using the TemaBersih theme, though I've heavily modified the layout and created several custom pages. It's not my only Bludit ...
by SpegalDev
Sun Dec 29, 2024 2:17 pm
Forum: Themes
Topic: Theme with native dropdown menu
Replies: 9
Views: 123267

Re: Theme with native dropdown menu

If you find a theme that works for you, but it needs some tweaking, feel free to post here. We can always try to help you create a dropdown menu / implement one.
by SpegalDev
Sun Dec 29, 2024 2:15 pm
Forum: Plugins
Topic: Table of Content (TOC)
Replies: 6
Views: 85613

Re: Table of Content (TOC)

Beautiful website. 😍
by SpegalDev
Sun Oct 06, 2024 4:15 pm
Forum: General
Topic: Correct Image sizes?
Replies: 4
Views: 8734

Re: Correct Image sizes?

There are usually demos out there of themes. Just open the images that are used in the demo and take note of their sizes. For example, my theme, Nimbus, uses 1200x628 for the blog images: https://demo.bluditlab.com/theme/nimbus/maecenas-non-nulla-augue You're free to use whatever size you want, but ...
by SpegalDev
Sun Sep 08, 2024 4:02 pm
Forum: General
Topic: Remove From Tags
Replies: 2
Views: 5040

Re: Remove From Tags

<?php $pageTags = $page->tags(true); $counter = 0; foreach($pageTags as $tagKey => $tagName) { $counter++; if ($counter == 1 || $counter == 2 || $counter == 4) { continue; } echo '<li><a href="'.HTML_PATH_ROOT.$url->filters('tag').'/'.$tagKey.'">'.$tagName.'</a></li>'; } ?>
by SpegalDev
Sat Aug 17, 2024 1:21 am
Forum: General
Topic: Startpage with one post per category
Replies: 2
Views: 6581

Re: Startpage with one post per category

I haven't tested the code, but give this a try: <?php $categories = $site->categories(); $displayedPosts = []; foreach ($categories as $categoryKey => $category) { $posts = $category->posts(); if (!empty($posts)) { $firstPost = reset($posts); if (!in_array($firstPost->key(), $displayedPosts)) { $dis...
by SpegalDev
Sun Jul 28, 2024 6:09 pm
Forum: Plugins
Topic: 📽️ Easy Video Embed
Replies: 7
Views: 81394

Re: 📽️ Easy Video Embed

The media playback was aborted due to a corruption problem or because the media used features your browser did not support.
This can usually be fixed by turning off "hardware acceleration" in your browser.
by SpegalDev
Mon Jul 22, 2024 8:28 pm
Forum: General
Topic: site migration / copy
Replies: 5
Views: 7737

Re: site migration / copy

I believe this is the source of the actual Bludit Backup plugin: https://github.com/bludit-plugins/backup

You can download it here: https://github.com/bludit-plugins/backu ... master.zip
by SpegalDev
Mon Jul 22, 2024 8:25 pm
Forum: General
Topic: independent/standalone pages
Replies: 12
Views: 32283

Re: independent/standalone pages

I think Jay was talking about adding a custom field. You can do so in /admin/settings : { "hidden": { "type": "bool", "label": "Hidden Page", "tip": "Check if the article should be hidden in navigation." } } Then, when you're crea...