5U and 4U for WP2.1

  • January 26th, 2007

I’m too busy in recent days, so I have no time to answer everyone’s question. So sorry!

My sixth theme will be finished.

Download: 5U For WordPress 2.1

Download: 4U For WordPress 2.1 ( 简体中文4U )

96 Responses to “5U and 4U for WP2.1”

  1. Gravatar Icon vic Says:

    老大,能不能发一份你的分页插件啊,老是调试不好这个插件,有问题啊!

  2. Gravatar Icon fen Says:

    Where is Utom 2007?

  3. Gravatar Icon Thomas Says:

    Hi,

    I translated your 5u theme into French. If you want I can send you the language file

  4. Gravatar Icon Utom Says:

    Thomas: I have send a mail to you!

    vic: 我没装什么插件!

    fen: - -

  5. Gravatar Icon 蓝色的信封 Says:

    等待你的2007,上次我说5u你说会用新的名字的阿?
    继续等待。

  6. Gravatar Icon Evan Says:

    老大,能说说改了些什么吗?我的旧版theme改了很多地方,我只想把Updated的几行代码改了就算了

  7. Gravatar Icon bssn Says:

    装了插件了,就不想升级了 呵呵

    辛苦了

  8. Gravatar Icon zhlsk Says:

    修改了哪些地方?只是更正了bolgroll调用问题?

  9. Gravatar Icon vic Says:

    没有插件的?–!

  10. Gravatar Icon 老米甲 Says:

    我看到不少人想知道for 2.1的到底修改了什么,但是UTOM说了他太忙了以至无法回答大家的问题。于是我查看了4U的文件变化,只有一个地方有改动,就是blogroll.php.
    从原来的 ‘, ”); ?>
    修改为:
    5U的文件我就没有去看了,我想也是差不多的。

  11. Gravatar Icon 老米甲 Says:

    代码被屏蔽了无法正常显示。大家可以自行拿blogroll.php对比着修改,只有并仅有一处修改的。

  12. Gravatar Icon Mayday Says:

    看看我的网站
    http://www.mayday.net.cn/mayday/
    用的是你的U5主题,
    怎么首页显示的是

    日志(RSS)
    评论(RSS)

    不是最新回复。。。

    我的邮箱:thisky@qq.com
    麻烦你告知一下。。。

  13. Gravatar Icon Mayday Says:

    还有,我想在标题栏显示副标题应该怎么做??

  14. Gravatar Icon Bert Says:

    Hi,
    Does your theme is widget ready. I instaled it, but I can see an option of 9 to drag and drop things into my sidebar. But I can’t find how I can to add things that are not standard included in your theme to my site ? The the that I use is 4U.
    Thanks,
    Bert
    Belgium

  15. Gravatar Icon oamao Says:

    先谢谢你给我们带来这么好的主题~~
    请问中间那个栏目Recent Comments是怎么加上去的~我用的这个主题就是没有~~很奇怪~~~(刚接触WP)~~Recent Comments的插件我是安装了的~~

  16. Gravatar Icon Cncrk Says:

    修改了functions.php,和en-us.php

  17. Gravatar Icon jason Says:

    error… :( archives page blank page ….

  18. Gravatar Icon santm Says:

    please take note of widgets for sidebar.php and function.php in new theme

  19. Gravatar Icon Henry Says:

    Is it just me, or does this theme act strangely in Safari? When ever I access a page using 5U in Safari, the first page is aligned all along the left side, everything is stuffed into a narrow column. But when I access additional pages everything formats properly. Only happens to me using Safari?

    Thanks–fantastic theme!

  20. Gravatar Icon MaddGIJoe Says:

    Your u4 theme is nice, but I can’t get any of my flash videos to show up. Is there a way to get them to work?

  21. Gravatar Icon Gary O Says:

    I have some issues with your 4U theme:

    1 - Search results - the number of results found are not counted in the “Secondary” box (http://www.go.id.au/?s=satellite) returns 4 posts/pages, but the “Secondary” box displays “no results found”.

    2 - Archives - the intro does not display the number of categories or the number of posts as intended (http://www.go.id.au/?page_id=14) in the first paragraph.

    3 - Hemingway Options in Admin Presentation - if I enable Toggle Bar, it displays the toggle, but when I click the toggle, nothing happens, I can’t make any comment! So I have had to return this to the default setting.

    4 - Bottom Bar - How do you remove a block which was created incorrectly, and I don’t mean just dragging it off of the relevant column or “other bar”. I would like to remove the block completely and not have it available at all.

    Your advice would be appreciated. In view of the number of comments being received, perhaps it is time to create a forum where these matters could be resolved.

    Regards

    Gary O

  22. Gravatar Icon MaddGIJoe Says:

    I’m sorry, u4 is not the cause of the flash videos not showing up… the word press editor messed up all of the codes. Sorry for an inconveniences. But I am experiencing most of the problems that Gary O is having.

  23. Gravatar Icon lanhl Says:

    下面的链接显示,如果是分了类的,在Firefox下面,会造成排版混乱,IE下面正常.还有右边那个最近评论怎么显示啊….麻烦utom了.

  24. Gravatar Icon sluke Says:

    pity utom,so many question waiting for u.

  25. Gravatar Icon Dpan Says:

    NND,上次Flickr官方挂了,我的图到现在都不显示,你的怎么显示的好好的。:(

  26. Gravatar Icon Gary O Says:

    Fix for search results - problem appears to be that $results was not declared so no results were found.

    In search.php. go down to DIV class secondary and add the following PHP within start and end code below the Search heading.

    $mySearch =& new WP_Query(”s=$s & showposts=-1″);
    $results = $mySearch->post_count;

    Fix for archives count - problem may be due to WordPress version, but not sure.

    Insert the following PHP within start and end code below h1.

    $numposts = $wpdb->get_var(”SELECT COUNT(*) FROM $wpdb->posts WHERE post_type = ‘post’ AND post_status = ‘publish’”);
    if (0 get_var(”SELECT COUNT(*) FROM $wpdb->comments WHERE comment_approved = ‘1′”);
    if (0 get_var(”SELECT COUNT(*) FROM $wpdb->categories”);
    if (0

  27. Gravatar Icon Gary O Says:

    OK looks like comments get truncated:

    This is the code to fix the archives.php page following the instructions in the above comment.

    $numposts = $wpdb->get_var(”SELECT COUNT(*) FROM $wpdb->posts WHERE post_type = ‘post’ AND post_status = ‘publish’”);
    if (0 get_var(”SELECT COUNT(*) FROM $wpdb->comments WHERE comment_approved = ‘1′”);
    if (0 get_var(”SELECT COUNT(*) FROM $wpdb->categories”);
    if (0

  28. Gravatar Icon www.365hope.com Says:

    这么好的主题当然要用用了。谢~~~~~~~~~

  29. Gravatar Icon 老米甲 Says:

    just stop by.

  30. Gravatar Icon pengyong Says:

    我是www.pengyong.com的pengyong,能否建立友情链接.
    静候佳音!

    彭勇的个人博客
    http://www.pengyong.com

  31. Gravatar Icon Tony Cai Says:

    Look at my modified version of UTomBox. I think it’s pretty neat, you should make a white version.

    tonycai.com

  32. Gravatar Icon 幻轩 Says:

    21岁生日快乐(不知是不是,在CH看到的)

  33. Gravatar Icon sunja Says:

    hi utom! love your themes so much! though i have a little question as I´m a nOOb to wordpress: how can I rename the “blog” page (the one that actually lets you return to your start page) to something like “home” in the menu below the header. help would be appreciated! thank you in advance!
    best wishes from austria, sunja

  34. Gravatar Icon Anonymous Soldier Says:

    To fix the bug where the post info gets cut off into a tiny column in Safari, you need to either comment out or remove the overflow: hidden attribute for .narrowcolumn .entry. Here’s an example:

    .narrowcolumn .entry {
    clear:both;
    padding:10px;
    /*overflow: hidden;*/
    }

  35. Gravatar Icon xinyoo Says:

    请问使用这个模板如果更换左上方的logo有关系吗?

  36. Gravatar Icon Liu Says:

    請問第六板何時完成?
    期待中…

  37. Gravatar Icon Patrick Says:

    In case any of you would like, I’ve modified the 4U theme and here is a .png you can use to replace the current “Date.png”

  38. Gravatar Icon Teddy Says:

    how do I set Flickr up using U5? I dont see a widget option for it.

  39. Gravatar Icon Dexter Says:

    我有个问题想问一下utom,我用了你的4u主题,一直都没什么问题,但最近出了个毛病,就是打开“海明威选项”之后那些选项却不在显示了,我又删了原来的主题,重装了一遍,但问题依旧,不知道是为什么,我截了一张图,但太大了,我就留个图片的地址,http://photo1.yupoo.com/20070310/154425_1833074849.jpg,麻烦您帮忙给看一下,究竟是什么原因,我该怎么解决?
    谢谢!

  40. Gravatar Icon stalkerX Says:

    Hello.

    I am developer from Germany. I translated your Theme 4U into German language. Please write me a E-Mail and I send you the files. Thx.

  41. Gravatar Icon Daniel Chain Says:

    utom,我的博客使用的是5U. 但是在使用搜索时发生错误,不知如何处理,请帮忙看看. 谢谢.

  42. Gravatar Icon huali Says:

    用的是你的U5主题,
    怎么首页显示的是

    日志(RSS)
    评论(RSS)

    不是最新回复。。。

    我也想知道!!!
    qq25060@yahoo.com.cn 麻烦告诉下 谢谢

  43. Gravatar Icon lithium Says:

    deberian tambien añadir el español
    yo podria ayudar

    you most be add the spanish language
    i can help you

    sorry for my bad english

  44. Gravatar Icon Alex Says:

    用你的5u主题时怎么gravatar2插件无法显示我的头像呢?都显示成一个默认头像了。像如下
    http://www.weileta.cn/?page_id=4

  45. Gravatar Icon wenxiao545 Says:

    我的问题同huall,
    我的风格首页中间栏有问题,我想把中间栏左移一点应该怎么做,谢谢
    wenxiao545@yahoo.com.cn

  46. Gravatar Icon wenxiao545 Says:

    不过在firefox下没问题.在IE7下也没问题.在IE6下就有问题了.

  47. Gravatar Icon Tom Says:

    I’m a big fan of your themes. Might I make suggestion for 5U?
    What happened to the bottom bars feature?? The lack of it in 5U is the only reason I have converted to it.

  48. Gravatar Icon alley cat Says:

    how do you add side bar blocks to this theme is it possible . im currently using the 4u theme and it has a side bar block and i love it

  49. Gravatar Icon Anthony Says:

    Hello,
    How do I active flickr. I am a newbie at wordpress. Please help me.

  50. Gravatar Icon Gui Says:

    希望站长可以提供一下(U5 style )风格。就是现在贵站用的这套。。太喜欢了。万分感谢!

  51. Gravatar Icon Buluoge Says:

    请问为什么我用你的风格没法显示评论呢?
    我把sidebar.php文件里关于评论相关的改成别的模板里面提花的就能显示,这是我这边的问题还是模板问题呢?谢谢

  52. Gravatar Icon lethem Says:

    用了这模板,不错
    不过黑色晚上上网看着不爽
    就修改成白色底了
    http://ofta.cn :-)

  53. Gravatar Icon matu Says:

    I like bothog the templates they fit in really nice
    this is my first time using wordpress I have used CMS before but I think this is a lot easier for just blogging.

    I fitted your skin over on http://www.lickmystyle.com

  54. Gravatar Icon Budah Says:

    Hi!
    I translate for Brazilian Portuguese language.. Can i send for u?!

  55. Gravatar Icon Fath Says:

    Hey, thanks for the themes. Continue on making good themes! :)

  56. Gravatar Icon Fath Says:

    how come your k2-u3 theme does not display as what you had shown on demo? it’s not 3 column when i applied it on my blog. it’s only 2 column.

  57. Gravatar Icon Ste Says:

    guys, and what about on wp 2.2 ?

  58. Gravatar Icon wpthemes Says:

    5U and 4U for WP2.1

  59. Gravatar Icon Henly Says:

    最大的问题就是

    不论4U 5U都不支持所有的带tag 或keywords 的插件!

    请博主有空还解决下这问题!

  60. Gravatar Icon Howie Says:

    呼唤针对2.2的版本!

  61. Gravatar Icon Pay Says:

    When will be your 6th theme be released? i like your work. Good job!

  62. Gravatar Icon peterzsk Says:

    我到现在还没有想通,他转载文章,为什么原文、译者都上了,却要把原文链接去掉?

  63. Gravatar Icon Utom Says:

    楼上说话看不起人, 麻烦滚吧.

  64. Gravatar Icon 酷辣客 Says:

    如果Utom 兄能够出个针对2.2的版本,就更棒了。
    to Henly :4U可以支持带tag 或keywords 的插件,看酷辣客下部的标签云就是插件效果。

  65. Gravatar Icon 村姑 Says:

    hello~我在用4U那个模版~但是在从2.1升级到2.2之后~blogroll的显示区域出现数据库错误:
    WordPress 数据库错误: [Unknown column 'cat_1' in 'order clause']
    SELECT * FROM wp_categories WHERE cat_ID > 0 AND link_count > 0 ORDER BY cat_1 ASC

    我本身不太懂什么技术,请问我应该怎么处理呢?
    稍微比较急。。。。。拜托拜托!!

  66. Gravatar Icon Didi Says:

    I’m using your theme.. thanks very much, it’s nice theme. but it seems didn’t work properly on WP 2.2, the recent post didn’t work..

    any plan to update it?

  67. Gravatar Icon www.canmo.cn Says:

    你好,我十分喜欢你的4u和5u,现已安装4u,但是有些问题。
    1、留言本怎么填写不了留言?
    2、想把首页和留言板显示的中文改写成英文,需要改哪些文件?
    3、首页的aboutme在哪里修改内容呢?
    4、想每页都有googleAD的广告,在哪里编写呢?
    5、5u安装不成功,如果小日历由灰色改成绿色,格调就更好了吧?
    6、恳请答复为盼!
    我的Z-blog的地址是http://www.canmo.cn/

  68. Gravatar Icon muopiujmhq Says:

    Hello! Good Site! Thanks you! xijzfpkxfu

  69. Gravatar Icon Jonathan Says:

    Just a head’s up regarding a couple bugs in 4U. There is an extra period (.) after the f in href on line 40 of functions.php which breaks the link in the footer. However, that brings up the question: “why do all of the string concatenation instead of using one string enclosed in single quotes?”

    Also, in the style.css file there are three references to the -moz-opacity property which assign a value using px as a unit. These properties should be unit-less. Also on the subject of opacity, newer mozilla browsers now support the CSS3 opacity property.

    Thanks for a great theme otherwise.

  70. Gravatar Icon Fath Says:

    oh this guy havent update such a “decade”…

  71. Gravatar Icon mouselan Says:

    反馈个问题~~:
    偶下5U下来后发现 搜索功能有些问题,只能显示一个日志,并且显示:
    Fatal error: Call to undefined function: utw_showtagsforcurrentpost() in d:\usr\www\html\wp\wp-content\themes\5u-language[20070126]\search.php on line 24

    上UTOM这里来看,只能显示两个日志,哈哈,点解? 谢谢Utom的themes

  72. Gravatar Icon Xoak Says:

    Hi Utom,
    I invite you to test/taste my cool widgets @ my homepage
    http://www.xoak.co.nr

  73. Gravatar Icon blank Says:

    请问下,你文章里的”No Tags “功能在哪启用,谢谢!

    我使用你模板后,找不到该块内容!

  74. Gravatar Icon Fath Says:

    so when will your sixth theme be released? I wonder what are you busy with. No updates for like 6 months!

  75. Gravatar Icon funsin Says:

    你的分页插件效果很好,能不能分享以下呀。

  76. Gravatar Icon Means Says:

    Thank you.i need 4U theme

  77. Gravatar Icon Tony Cai Says:

    Hi,

    Thanks for the theme, in your next update, you should make a white version. I have played around with your theme and created my site with it.

    http://tonyca.com

  78. Gravatar Icon Viskem Says:
  79. Gravatar Icon bluEyez Says:

    COME BACK :((

  80. Gravatar Icon enrico Says:

    hello, i have downloaded your 5U theme for WP2.1, that i like very much, with the italian translation (two little bugs, but solved and not important). The problem i have is the result of the search box: the result page is cutted to the middle, and do not display the part that include “Recent posts, Blogroll, ecc. Perhaps the 2 php file relevant the search module are corrupted, or i don’t know what is the problem. Can you help me? Thanks and sorry for my poor english, i hope you have understood. Ciao
    Enrico

  81. Gravatar Icon 村姑 Says:

    请问又没有哪位u4的高手~帮我解决一下:
    怎样限制展示在sidebar上的Recent Comments只显示一行??应该改那个文件啊?

  82. Gravatar Icon daao Says:

    IE7浏览器下怎么有问题呢?

  83. Gravatar Icon oqbo Says:

    Thanks! Very good!

  84. Gravatar Icon 蓝风 Says:

    我KAO,你的PR升为6了,怎么追也追不上你啊~

  85. Gravatar Icon Says:

    发现自己好久没有来这里看看了

  86. Gravatar Icon tibetcar Says:

    这个5U我喜欢,下了个,谢谢了

  87. Gravatar Icon 村姑 Says:

    请高手们指教一下:怎样限制u4-zh的blogroll随机显示10条啊?
    记得以前可以随机D吧?

  88. Gravatar Icon Mih@ Says:

    I use U5 on my page http://zsfb.org/ and i have widgetized it. If anyone wants a wiget ready version of U5 please contact me: miha.rekar … gmail.com

  89. Gravatar Icon ray Says:

    If a post generates to many questions for which you have no time answering you could insert a vote instead.
    Check Lester Chans plugins, he is very good: http://lesterchan.net/portfolio/programming.php
    cheers!

  90. Gravatar Icon Clement Says:

    It’s a shame it isn’t widget-ready…

6 Trackbacks/Pingbacks

  • Bloganbieter.de (Trackback, January 29, 2007)
    WP-Themes 4U und 5U für Wp 2.1... Unter Utombox wurden die beiden sehr beliebten Wordpress Themes 4U und 5U aktualisiert und WP2.1-enabled, d.h. man kann sie nun problemlos unter 2.1 nutzen. Wie ich finde zwei sehr schöne und stimmige Themes. Download: 5U fürWordPress 2.1 Download: ...
  • Nokia 3250 Collection (Trackback, February 16, 2007)
    网站正式投入Wordpress的怀抱!... 历时6个半小时的长命转换, 终于把SaBlog里面的数据全部转换成Wordpress了. 但是还是不排除其中还有漏网之鱼的可能… -_-b … 如果你们发现那个地方有问题一定不要hesitate to tell me! bug杀杀杀! 谢....
  • Gedankenexperiment (Trackback, June 28, 2007)
    18 temas chinos (+ 6 asiáticos) para Wordpress... Mientras me encontraba buscando temas para Wordpress (una historia de nunca acabar, seh), me encontré con que Derek Punsalan denunciaba el plagio del, en ese momento, flamante diseño de su sitio (tiempo después, Derek liberó el código con el nombr...
  • 潜云思绪 (Trackback, May 13, 2007)
    新的开始... 回想自己的blog历程,从天涯到msn space,之后转战个人服务器空间。第一个blog程序是Zblog-plus,之后的某天因为数据库突然崩溃,向cloudream求助后仍无法解决。无奈之下只得抱着数据转移到PJblo....
  • 10 Beautiful Dark Wordpress Themes (Pingback, February 1, 2008)
    [...] 5U Style [...]
  • Enhanced Hemingway 4U | Leo's Space (Pingback, March 31, 2008)
    [...] utom 的 4U,部分功能的代码借鉴了 桑葚 的插件 中文 WordPress [...]

Leave a Reply