Info
- 14 posts
- 5 voices
- Started 3 years ago by _ck_
- Latest reply from bascowong
- This topic is not a support question
new free theme: "The Hybrid" (formerly "Kakumei Too")
-
- Posted 3 years ago #
By popular request here is "The Hybrid"
download:
http://bbshowcase.org/themes/the-hybrid.zip
demo:
http://bbshowcase.org/forums/?bbtheme=the-hybridEssentially it's a mash-up between the bbPress support forum theme here and Kakumei, with a few tweaks.
Requires the Topic Views plugin to be installed.
It's older work and not as pretty as "FutureKind" (I won't be releasing that one this year) and you can forget about "validation" unless you want to work on it quite a bit yourself, but it's a nice alternative to the defaults.
Let me know if you get any errors or other problems.
I'll try to fix it up some more as I have time. -
- Posted 2 years ago #
I got an issue. I have Topic View plugin installed, but the theme does not display the views in the forum list, but it displays the views in the "Latest Discussion" section.
-
- Posted 2 years ago #
View counts in the forum section require part of "my-views" plugin to be installed (my-views-most-least-views.php) or just make this a mini-plugin:
add_filter('get_forums','forums_views_append'); function forums_views_append($forums) { if (is_front() || is_forum()) { global $bbdb, $forums_views; $sum_meta_value="SUM(meta_value)"; if (!isset($forums_views)) { $forums_views = $bbdb->get_results("SELECT DISTINCT forum_id, $sum_meta_value FROM $bbdb->topicmeta LEFT JOIN $bbdb->topics ON $bbdb->topicmeta.topic_id = $bbdb->topics.topic_id WHERE $bbdb->topics.topic_status=0 AND $bbdb->topicmeta.meta_key='views' GROUP BY $bbdb->topics.forum_id"); } foreach ($forums_views as $forum_views) { if ($forum_views->forum_id) {$forums[$forum_views->forum_id]->views=$forum_views->$sum_meta_value;} } } return $forums; } -
- Posted 2 years ago #
When i went to demo this theme it gave me a blank page. Is there another way to demo this theme?
-
- Posted 2 years ago #
It's working for me. What browser/os are you using?
-
- Posted 2 years ago #
Running Firefox 3.0.7 on Windows Vista and I don't see bg16b.png or page_header_tile.png showing up. That said, I do see page_header_bblogo.png.
-
- Posted 2 years ago #
Ah okay, apparently the htc file I use for old IE6 support is now causing some kind of weird behavior in IE7.
It works for me now in IE7 - but I have no idea why you couldn't see those images, it works for me.
-
- Posted 2 years ago #
When I "view source" those images don't show up. They're in the CSS file... they SHOULD show up.
-
- Posted 2 years ago #
You'll need to change this one:
#latest tr, #forumlist tr, #favorites tr {behavior:url("/forums/my-templates/kakumei-too/images/hoverlite.htc");} -
- Posted 2 years ago #
Yes I already removed that, try doing a hard refresh (shift f5)
-
- Posted 2 years ago #
Didn't realize that you uploaded a new version. Thanks!
-
- Posted 2 years ago #
Topics with no replies
Fatal error: Call to undefined function my_views_header() in /home/oamsites/public_html/themeguild/bb-templates/the-hybrid/view.php on line 5
http://www.themeguild.com/view.php?view=no-replies
Please help,thank you
-
- Posted 2 years ago #
Sorry, looks like I left some customized leftovers in there.
Simply remove line 5 entirely or comment it out like this
<?php // my_views_header(); ?> -
- Posted 2 years ago #
Thank you._ck_
-
This topic is
closed