Table of Contents
Purpose
Berry is a WordPress 2.5 theme that aims to be light, fast, and highly-customizable. Codename Cran-Berry is a theme with a red color scheme and will be the first Berry release for public consumption.
Download
Latest Testing Release: Cran-Berry Build 200
Installation
- Download the theme zip archive, see Download section.
- Extract the contents of the zip archive into your plugins folder (wp-content/themes).
- Select the theme in the administration panel under the presentation section.
- Continue onto the Usage section.
Usage
Berry depends on these plug-ins in order to look as appears on this blog:
- Breadcrumb NavXT
Related Posts(Link Dead)- WP-PageNavi*
Note: The starred plug-ins are distributed with this theme and contain modifications not present in the official versions. Upgrading to the official versions of the plug-in will cause unexpected results. Modified plug-ins contain the version number ‘9999’ and are supported as part of the theme. Do not request help with them from the official plug-in author, instead make all inquires in the comments section of this page.
Version History and Changelog
- .99 (Build 200) (Codename: Cran-Berry) [2-27-2010]:
New Feature: Support up through WP2.9.
New Feature: Threaded comment support.
New Feature: Sidebar widget available.
Bug Fix: Updated function calls to external plugins. - .9 (Build 100) (Codename: Cran-Berry) [5-2-2008]:
Initial public release
License
Berry is released under the GNU GPL 2.0 license and comes with absolutely no warranty. Portions licensed under Creative Commons Attribution Share-Alike License. These portions include the mini-icons from the Tango icon set. By downloading Berry you agree to the terms of the GNU GPL 2.0 and CC By-SA licenses.
The Download link isn’t working dude.
manu,
Berry will not be released until the last week of April, at the earliest as I’m shooting for the 1st of May. I have a page skeleton that I use for all my code pages which allows for quick jumping between sections. The download link you see just jumps to the download section, which at this time is empty as there are no downloads available yet. When the theme is released I will post details on it in my blog and place a link in it and on this page.
-John Havlik
Alright John, I’ll wait for you to release Berry.
Till then can you help me implement Breadcrumbs on the theme I’m using right now. I enabled the core version and placed the required code right after the navigation bar, on refreshing the page all I got was a blank page.
Also, when I try enabling the version with the administration interface(I’m using WP 2.5), I get the following error:
/*********CODE*********/
Parse error: syntax error, unexpected T_ARRAY, expecting ‘&’ or T_VARIABLE or T_CONST in /domains/10869/web/wp-content/plugins/breadcrumb-navxt/breadcrumb_navxt_admin.php on line 653
****END**********/
manu,
You are probably running PHP4. What you need to do it replace
function bcn_select_options($optionname, array $options)
withfunction bcn_select_options($optionname, $options)
. Breadcrumb NavXT 2.1.1 will have this fix in it.-John Havlik
John which file is this change to be made?
manu,
The breadcrumb-navxt-admin.php file, it’s the one that PHP complained about ;).
-John Havlik
John thanks for pointign it out, I didn’t realize I was still on PHP4.
John,
Please fix your download link. It should be berry–build100.zip instead of berry_build100.zip
Tepisor,
Thanks for pointing that out (I usually use the underscore instead of dash). It’s fixed now.
-John Havlik
Hi,
I am using your cran-berry theme, it is really nice. I have a question regarding “hr” in .css. I changed the border to be a dotted line and I discovered a second solid line underneath is. I tried to figure out where the second rule is coming from, but it just won’t go away, even when I remove all of the .css.
Any thoughts?
Ray,
The HR element is kinda flaky, you have to kill all boarders in CSS then add just one of them, typically the bottom. Make sure that you use the following if you want a dashed line:
hr
{
margin: 0;
border: none;
border-top: 1px dashed #8b2727;
}
I verified that code works. You may find it beneficial to grab the CSS file I am using on my blog here as an update to Berry as I have not released an updated archive file yet.
-John Havlik
John,
Thanks for that quick fix.
When you say replace the css file, do you mean replace ALL of the css?
Ray,
Well since you’ve modified your CSS a direct grab won’t work so well for you. However, some of the CSS for the sidebar and for the comment form has been updated/changed which you may want to look through and selectively include.
-John Havlik
Is there a download for the .css?
Ray,
You can grab it from http://mtekk.weblogs.us/wp-content/themes/berry/style.css
-John Havlik
when i go to the related posts link i get:
http://www.w-a-s-a-b-i.com/?404=Y
is this plugin still avaiable?
thanks
It doesn’t appear to be available anymore. However, there are alternative now that may be better (See: http://wordpress.org/extend/plugins/wordpress-23-related-posts-plugin/ ).
-John Havlik
Hello
I get a error message.
Fatal error: Call to undefined function breadcrumb_nav_xt_display() in /web/se/e-learning.letit.se/wp-content/themes/berry/header.php on line 33
Any idéa on how to solve this?
I have installed Breadcrumb NavXT, Related Posts, WP-PageNavi.
Never mind, I saw the last FAQ post.
Updated to in header.php
Hi I have the same problem
Fatal error: Call to undefined function breadcrumb_nav_xt_display() in /home/a7921374/public_html/wp-content/themes/berry/header.php on line 33,
how you solved i can not find the solution in FAQ’S
Diego,
Yeah, the problem is due to a way out of date call in the theme. Due to time I haven’t updated the .zip file with a more modern version of berry yet. I may get a chance tomorrow to get together a new Berry package based off of what’s actually running on this blog.
In the mean time, to resolve your issue, replace the old calling code with:
<?php
if(function_exists('bcn_display'))
{
bcn_display();
}
?>
-John Havlik
Hi John a pleasure. i did what you told me works fine thanks, check please http://www.alquilermotosmenorca.com/hola-mundo.html you will see a new error in the sidebar, line 37, and the sise of the SB change dramatically. any idea?
thank you in advance, good job
Diego,
That is because of internal changes in Breadcrumb NavXT, so the function is no longer available. Just remove that line of code from the sidebar.php (I removed it on this site a while back, again, a change that will show up in tomorrow’s “release”).
-John Havlik
Done thank you so much, the last one, why sidebar size change, I can not read the text, http://www.alquilermotosmenorca.com/acerca-de.
Thank you in advance. diego
this is due to my last enquire
Hi John, i changed the size in CSS to 1em… hopes works
regards
diego
Hi John, one more question.
there is something else todo to activate the Related Post in the sidebar, I activate the plug but nothing happeneds.
regards
diego
Diego,
It looks like the “build relations” menu is not there in newer WordPress’. And it looks like the plugin author’s site is gone. Hmm…
-John Havlik