Please note: This is an old post. The information is probably not accurate and up-to-date anymore.
My Cakifo WordPress theme has just been updated to version 1.2.
Small changelog
- Even more HTML5
- More widget areas (after singular, after singular, and 404 error page)
- Pull quotes (See Wiki)
- Add support for the Custom Field Series extention
- Update notification in your dashboard when an update is available
- Modernizr 2.0 and Slides 1.1.8
- French translation by Wolforg
- Bug fixes and small improvements to design and code
See a more detailed changelog at Github
Download the update
[This download is no longer available]
I just want to let you know that you design the best free WordPress themes that I’ve yet seen, this is also one of the most amazing Hybrid Child Themes available!
Keep up the great work!
Thanks!
Just to correct you – it’s actually a Hybrid Core parent theme 😉
Ahh thanks, didn’t realize my mistake.
I had a question as well, I cannot seem to get the author box to appear at the end of posts, should I be adding the “Authors” widget in the “After Singular” section?
That’s because you’re the only author on your site. It uses the WordPress 3.2 function
is_multi_author()
.You can add this in your child theme:
http://pastie.org/pastes/2631705/text
When WordPress 3.3 comes out, you can just use
add_filter( 'is_multi_author', '__return_true' );
Ah thank you, better support here than most free themes, ha!
Well, thanks again 🙂
Hey Jay, hopefully last question.
Right now the site I have running Cafiko seems to scroll really slowly, but I don’t have excessive widgets on the site, and it never used to before…
Any ideas?
That might be because of the box-shadow on the #content element
I suggest you create a child theme and edit/remove the shadow
Hi Jesper,
a wonderful theme! Just one question I have: I’m looking for theme that nicely fits to tablets, smartphones as well as desktops.
What are the ranges for when widgets move to the footer? And how is this realized. Background for my question is that if I make my browser window smaller on my netbook it scales perfectly, but on my Galaxy Tab with 600×1024 res, I have the side column showing on the right side, so that the main content is quite small.
Do you have any suggestions how to make it more readable on a 7” tablet with a netbook resolution? Could I force it to become a one column when a mobile system is recognized? Or could I have some buttons so that the user could chose the dimensions?
I hope these weren’t too much questions/wishes 🙂
Thanks!
The sidebar should move to the footer when the window width is smaller than 979px.
I’m normally against making changes in the Cakifo theme files but can you try to open style.css and find
@media screen and (max-width:979px)
(I know it’s compressed but you can search for it)and edit that width to it fits to your Galaxy Tab and return to me with the new width?