按分类归档:vbulletin&xenforo

Widget Framework xenforo微件

[bd] Widget Framework 1.0.9 (zh_CN) Xenforo微件插件,很不错的功能,有很多种渲染程序,可以很灵活的配置论坛的侧边栏 我的配置如下: 添加页面: 中文语言包下载:

发表评论

Yilmaz Top Threads 1.0 热门主题

Yilmaz Top Threads 1.0 xenforo 热门主题插件 Xenforo侧边栏热门主题列表 即点击率高的主题列表 简体中文语言包下载:

发表评论

Tenshi Latest Thread 2.0 最新主题

Tenshi Latest Thread 2.0 Xenforo最新主题语言包,后台设置灵活,可以忽略特定的版块,简单实用 简体中文语言包下载:

发表评论

[bd] Banking xenforo 社区银行 中文语言包

[bd] Banking  Xenforo 社区银行插件,功能基本够用 主要功能: 新建主题奖励 回复主题奖励 上传附件奖励 贴子支持 附件收费(下载收费)等其用功能 插件下载地址:http://xenforo.com/community/threads/bd-banking.5853/ 中文界面如图:   简体中文语言包下载:

发表评论

xenforo 子版面横排的方法

进入后台–语言及模板–编辑模板,打开Extra.css,在内容最下方添加: .subForumsGrid { padding-right: 4px; } .subForumsGrid .blockLinksGrid { width: 100%; display: inline-block; padding: 5px; } .subForumsGrid .fullWidth { width: 100% !important; padding-bottom: 4px; } .subForumsGrid .node { width: 20%; float: left; } .subForumsGrid .node ol { padding-left: 10px; } … 继续阅读

发表评论

Xenforo 1.1 简体中文语言包

xenforo 1.1正式版 前台、后台控制面板汉化完全,调试模式内没有汉化 有几个PHP专业一些的语句没有汉化 中文语法参考VBB中文 不正确的请大家提出或者自己更改。这只是业务爱好,本人不承诺以后会更新,请依据自己的实际情况来更改 下载地址: XF1.0基础内容源于cotcn.com版本 2011.10.13  更新附件,原附件为MAC下编辑,致使中文文名乱码,已更正。 2011.10.14  更新附件,已将前台管理功能等字段翻译完成,基本上差不多了,更正了XML不能导入的错误(原因是一个短语错误) 2011.12.05  附件更新为xenforo 1.1正式版本,基本已经翻译完成

21 comments

xenforo like and reply css box

Xenforo的like功能很实用,但不怎么直观,这么经典的功能,最好能够加强显示效果,达到美观、易用、便于操作的目的,效果如下 结合国外的网站介绍,解决办法如下: 进入管理后台,模板编辑,打开EXTRA.css,添加: .message .messageMeta .publicControls .control, .messageSimple .messageMeta .publicControls .control { text-decoration: none; background-color: #eeeeee; padding: 0 13px; margin-top: -5px; margin-left: 3px; border: 1px solid #e2e2e2; border-radius: 2px; -webkit-border-radius: 2px; -moz-border-radius: 2px; -khtml-border-radius: 2px; line-height: 24px; text-shadow: #fff 0px … 继续阅读

发表评论

xenforo友情链接的添加方式

进入管理员控制面板 新建模板:SiteFriendlyLinks 内容如下: <style type=”text/css” id=”sitelink_css”> #sitelink #sitelink_img_text{ background: rgb(255, 255, 255) url(images/gradient-greytowhite.png) repeat-x top left; border-top: 1px solid rgb(255, 255, 255); } #sitelink .sitelink_row_bit, #sitelink #sitelink_img_text { display:block; padding: 5px 0; border-bottom: 1px solid #c4c4c4; border-right: 1px solid #c4c4c4; … 继续阅读

6 comments

贴子侧边用户信息行高及显示方式更改方法

Xenforo贴子显示页面左侧的用户信息列表,用户信息行高太小的,更改如下: .messageUserBlock .extraUserInfo { @property “messageExtraUserInfo”; font-size: 12px; line-height: 1.8; background-color: @primaryLightest; padding: 4px 6px; border-radius: 4px; @property “/messageExtraUserInfo”; } 用户信息显示在一条线上: .messageUserBlock .extraUserInfo dt { font-size: 12px; display: float; }

1 comment

xenforo的中文附件名在IE环境中下载乱码的解决办法

打开:xenforo\library\XenForo\ViewPublic\Attachment\view.php 更改如下: if (in_array($extension, array_keys($imageTypes))) { $this->_response->setHeader(‘Content-type’, $imageTypes[$extension], true); //chinese file name encoder //$this->setDownloadFileName($attachment['filename'], true); $this->setDownloadFileName( (@iconv(“UTF-8″, $charsett, $attachment['filename'])), true); //chinese file name encoder end } else { $this->_response->setHeader(‘Content-type’, ‘unknown/unknown’, true); //chinese file name encoder //$this->setDownloadFileName($attachment['filename']); $this->setDownloadFileName(@iconv(“UTF-8″, $charsett, $attachment['filename'])); //chinese … 继续阅读

1 comment