Danny ๐ŸŽญ 5 days ago
getting my tiktok account stolen was not on my 2025 bingo card LMAO
nick ๐ŸŽฎ 4 days ago
replaying some games lately and questioning if my patience actually got worse or if they were just annoying the whole time oof

Make a wish

Request any resources, designs, or downloads, and please specify whether you want a tutorial or a download.


Wishes (21)

Anon asked on 02.12.2025
Can u do a tut on how to add tags in blogify? :)
Rejection Reason: to be honest, blogify was written as a really simple tool to add blog posts to your page for people who used to edit their index.html by hand. I have no intention of making it more advanced, sorry. <3 xoxo
Salya asked on 04.11.2025
Can you do a Tutorial on how to integration the Advent Calendar to my layout? I tried using the integration in the config and it didn't work. So help please?
Additional Notes: hey! is your calendar in a folder? โ˜บ๏ธ if your advent calendar script is in a folder and your header/footer files are somewhere else, you have to adjust the path in your config. I hope it's okay if I write a mini tutorial here directly, because normally (when not in a folder), the script just picks the files automatically.

the reason why it doesn't work for you is probably because the server starts looking from the directory of the current file.

so, for example, if your script is in a folder like event/adventcalendar.php, the server expects the header file in the event folder. you need to tell the server how to move to the correct location. this is kinda a general rule for most php scripts actually, just a tip for the future! โ˜บ๏ธ

example 1: header and footer files are outside of the script folder, "one folder back":
๐Ÿ“ home
  โ”œโ”€ ๐Ÿ“„ header.php
  โ”œโ”€ ๐Ÿ“„ footer.php
  โ””โ”€ ๐Ÿ“ event
          โ””โ”€ ๐Ÿ“„ adventcalendar.php

__DIR__ . '/../header.php'

the .. means 'go up one folder' in the server directory hierarchy.

example 2: header and footer files are two folders back:

๐Ÿ“ home
  โ”œโ”€ ๐Ÿ“„ header.php
  โ”œโ”€ ๐Ÿ“„ footer.php
  โ””โ”€ ๐Ÿ“ event
          โ””โ”€ ๐Ÿ“ advent
                  โ””โ”€ ๐Ÿ“„ adventcalendar.php

then you need to go up two folders:

__DIR__ . '/../../header.php'

each ../ steps up one directory.

also, when your header and footer files (and your css) are outside of the script folder, image paths in your css usually need to start with / so the server loads them from the root and not from inside the script folder. for example:
background-image: url('/images/snow.png');

also just a small tip: it's usually easier not to put php scripts deep inside nested folders, because paths can start acting unpredictable really fast.

but the solution above should fix your issues! I hope this helps! feel free to contact me if you need help. โœจ
Matt asked on 21.10.2025
A tutorial how to create a custom wp theme ? Or a template ? A wp starterkit if you will๐Ÿ‘๐Ÿฝ
Rejection Reason: hi matt! there actually already is a starter theme generator for wordpress โ˜บ๏ธ it is called 'underscores', and it creates a blank theme with all the required core files: underscores.me

a more recent starter theme by automattic is 'blockbase', which supports the latest block-based features in wordpress. personally, i am not a big fan of those. i still prefer the old-school approach like underscores.

maybe i will make my own templates in the future, but i don't personally work with wordpress anymore (and neither does danny). wordpress has shifted heavily toward block-based editing and gutenberg, which i am just not really into. ๐Ÿฅฒ
Anon asked on 20.10.2025
Hi hello! How do you make your twitch overlays? Iโ€™d really love a tutorial on that, especially how you do the animations. I just canโ€™t seem to wrap my head around After Effects. Another wish (hope Iโ€™m not being rude haha) could you make a tutorial showing how you designed the ticket and swirl animation here? 806 Thank you ๐Ÿฆ‹
Additional Notes: Hey! Please don't laugh at me, but I use html to make the designs ๐Ÿ˜‚ I make them with html/css & load the overlay.html as a browser source in OBS, record it as a video (.mp4), and cut it afterwards to make them seamless. So.. no After Effects involved. :( XD (I FEEL EXPOSED HAHA) // I included my tutorial as a youtube video!
Anon asked on 18.10.2025
Hey you two! Can you guys do a tutorial on how to install Blogify? I'm kinda struggling to get it right. I installed it locally to test it. Everything works fine: I can log in and write posts, but I can't integrate posts even though I copied and pasted the code you provided in the Blogify dashboard. When I look up the posts on "blogify_posts.php", they are there, but on the website it says "No entries yet." Btw: I love the starterkit generator! <3
Additional Notes: Hey! Maybe the "locally" part is what makes the Script bug around. Have you tried it on server? You're welcome to reach out to us via Discord or eMail, so we can help you further. :) xoxo
Anon asked on 23.09.2025
I would like to know how you added reactions to your status.cafe posts. Could you write a tutorial for this? :) Thank you.
Rejection Reason: oh, actually we're not using status.cafe here ๐Ÿฅน we built our own cms that powers the whole site (and all our side projects, like the tutorials), and the status posts and reactions are just one small part of it. would you be interested in a self-hosted php script for that? it'd only work if your host supports php (so no luck on e.g. neocities, sadly). not sure when i'd have time to put it together though, life's a bit hectic atm. ๐Ÿซ 
Anon asked on 01.09.2025
Thank you, Nick! When I asked about the downloads, I was thinking of the HTML/CSS beginner layout or something like that. I don't remember what you called it, but it was the basic structure for layouts, with an HTML file, CSS and fonts folders (and some forms). <3
Additional Notes: ooooh! actually, I've turned this into a dynamic tool now, so you can select the specific elements you need and get a customized "starter kit." that said, the ones I had on variations had extra styling (including fonts and predefined components like forms) indeed.

edit: I actually updated my starterkit generator for you, and now it basically has all the features of my old premade starterkit on "variations", but with the bonus that you can fully customize it and choose which fonts you actually need etc. โœจ
Salya asked on 29.08.2025
tut on how to add comments to the new skins. I'm using one but I edited a bit to fit my site. but I would like to know how to make comments for posts.
Rejection Reason: hi salya! the news skins are simple html designs, so a tutorial on adding comments would be tricky (though you could integrate disqus or something similar, but that's probably not what you're looking for). blogify doesn't support comments right now, since it's designed to be a lightweight, simple system for small sites and blogs. it's possible we'll develop another news system with more features in the future, but we don't have a timeline for that yet. ๐Ÿฅน
Anon asked on 22.08.2025
I would love to see more status.cafe layouts, because there are very few resources for it online โค๏ธ I was really happy to find that you guys have made one already and would love to see more, because your designs are so lovely!
Rejection Reason: sadly, the (one) status.cafe layout we made was more of an experiment to see how much demand there was, and we've decided not to make more. especially since status.cafe had serious security issues, javascript worms and other nasty stuff (it kept re-infecting danny's profile and took them 2 years to fixโ€ฆ). so tl;dr, sorry to disappoint, but we probably won't be creating more ๐Ÿฅน. we really appreciate that you enjoy our other designs though! <3
Anon asked on 20.08.2025
Not a wish, but a question: Are you planning on bringing back the downloads that were available on "Variations"? I'm trying to code my first website, and it's a mess without them haha <3
Additional Notes: is there anything specific that you're missing? I actually canโ€™t remember which ones I deleted back then, oops! but feel free to contact me on Discord (you can find our social media profiles on the about page) or via the contact form if you need help. <3