Search found 38 matches

by SpegalDev
Wed Jan 08, 2025 7:40 pm
Forum: Show your Bludit-Website!
Topic: BrighterShores.Pro
Replies: 0
Views: 888

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

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: 4
Views: 1280

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

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

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

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: 4
Views: 5756

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

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

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...
by SpegalDev
Sat Jul 20, 2024 4:22 am
Forum: Plugins
Topic: 📰 Schema Markup
Replies: 0
Views: 5849

📰 Schema Markup

https://bluditlab.com/assets/img/plugins/schema-markup.png In today's competitive online landscape, having well-structured and SEO-friendly content is essential for attracting and retaining readers. Ensuring your content is optimized for search engines and provides rich snippets in search results c...