立即注册 找回密码

QQ登录

只需一步,快速开始

查看: 182|回复: 0

[PHP 教程] discuz X3.5简易兼容X3.4及之前的模板解决方法

[复制链接]

98

主题

0

回帖

1078

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
1078
发表于 2024-5-27 18:05:55 | 显示全部楼层 |阅读模式
道勤网-数据www.daoqin.net

亲注册登录道勤网-可以查看更多帖子内容哦!(包涵精彩图片、文字详情等)请您及时注册登录-www.daoqin.net

您需要 登录 才可以下载或查看,没有账号?立即注册

x
discuz X3.5由于进行了图标iconfont处理,之前的模板大部分无法直接适用,可以进行简单的操作使其能基本可用。


步骤:

一、去除漫游相关代码,修改template\模板目录\forum\discuz.htm(php)文件,找到并删除如下代码:

  1. <!--{if $_G['group']['radminid'] == 1}-->
  2.         <!--{eval helper_manyou::checkupdate();}-->
  3. <!--{/if}-->
复制代码
二、修改template\模板目录\forum\discuz.htm(php)文件:
找到
  1. {STATICURL}image/common/$online[icon]
复制代码
修改为
  1. $online[icon]
复制代码
三、将\static\image\common\目录下的dzicon.eot、dzicon.woff、dzicon.woff2三个文件复制到你使用的模板的图片目录下,图片目录为你在后台模板编辑里设置的“界面基础图片目录 {IMGDIR}”

四、模板common文件中使用了common.css,还应在common.css最下面添加如下css
  1. img, svg { vertical-align: bottom; }
  2.         @font-face { font-family: "dzicon"; src: url('{IMGDIR}/dzicon.eot'); src: url('{IMGDIR}/dzicon.eot?#iefix') format('eot'), url('{IMGDIR}/dzicon.woff2') format('woff2'), url('{IMGDIR}/dzicon.woff') format('woff'); font-weight: normal; font-style: normal; }
  3.         [class^="fico-"]:before, [class*=" fico-"]:before { font-family: "dzicon"; font-style: normal; font-weight: normal; speak: none; display: inline-block; text-decoration: inherit; width: 1em; margin-right: .2em; text-align: center; font-variant: normal; text-transform: none; line-height: 1em; font-size: 120%; }
  4.         /* font icon size */
  5.         .fic4 { font-size: 14px; }.fic6 { font-size: 16px; }.fic8 { font-size: 18px; }
  6.         /* flip x */
  7.         .fifx::before { transform: scale(-1,1); }
  8.         /* font rotate */
  9.         @keyframes dzrotate{0%{transform:rotate(0deg)}100%{transform:rotate(359deg)}}
  10.         .ficr { margin-right: .2em; }.ficr:before { margin-right: 0; animation: dzrotate 2s infinite linear; }
  11.         .loadicon { background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3e%3cpath fill='%23999' d='M12.2 12.2L14 14H9V9l1.8 1.8c.7-.7 1.2-1.7 1.2-2.8 0-1.9-1.3-3.4-3-3.9v-2c2.8.4 5 2.9 5 5.9 0 1.6-.7 3.1-1.8 4.2zM3.8 3.8C2.7 4.8 2 6.3 2 8c0 3 2.2 5.4 5 5.9v-2.1c-1.7-.4-3-2-3-3.9 0-1.1.5-2.1 1.2-2.8L7 7V2H2l1.8 1.8z'/%3e%3c/svg%3e"); display: inline-block; width: 16px; height: 16px; animation: dzrotate 1.2s infinite linear; }
  12.         /* font color primary/secondary/notice/light/alarm/valid/invalid */
  13.         .fc-p { color: {MENUBGCOLOR}; } .fc-s { color: #999; } .fc-n { color: #7DA0CC; } .fc-l { color: #FF9C00; } .fc-a { color: #F26C4F; } .fc-v { color: #7CBE00; } .fc-i { color: #FF512C; } .fc-t { color: transparent; }
  14.         /* no margin right */
  15.         .fnmr:before { margin-right: 0; }
  16. /* font icon图标列表,供用户调用 */
  17. .fico-person:before{content:"\f100";}
  18. .fico-search:before{content:"\f101";}
  19. .fico-account_box:before{content:"\f102";}
  20. .fico-account:before{content:"\f102";}
  21. .fico-home:before{content:"\f103";}
  22. .fico-assessment:before{content:"\f104";}
  23. .fico-widthfixed:before{content:"\f105";}
  24. .fico-widthauto:before{content:"\f106";}
  25. .fico-styleselect:before{content:"\f107";}
  26. .fico-add_circle:before{content:"\f108";}
  27. .fico-add:before{content:"\f108";}
  28. .fico-remove_circle:before{content:"\f109";}
  29. .fico-remove:before{content:"\f109";}
  30. .fico-rss_feed:before{content:"\f10a";}
  31. .fico-rss:before{content:"\f10a";}
  32. .fico-refresh:before{content:"\f10b";}
  33. .fico-delete:before{content:"\f10c";}
  34. .fico-comment:before{content:"\f10d";}
  35. .fico-edit:before{content:"\f10e";}
  36. .fico-push:before{content:"\f10f";}
  37. .fico-thumbup:before{content:"\f110";}
  38. .fico-thumbdown:before{content:"\f111";}
  39. .fico-collection:before{content:"\f112";}
  40. .fico-activitysm:before{content:"\f113";}
  41. .fico-share:before{content:"\f114";}
  42. .fico-check_right:before{content:"\f115";}
  43. .fico-error:before{content:"\f116";}
  44. .fico-info:before{content:"\f117";}
  45. .fico-qq:before{content:"\f118";}
  46. .fico-email:before{content:"\f119";}
  47. .fico-task:before{content:"\f11a";}
  48. .fico-scrolltop:before{content:"\f11b";}
  49. .fico-replyfast:before{content:"\f11c";}
  50. .fico-list:before{content:"\f11d";}
  51. .fico-follow:before{content:"\f11e";}
  52. .fico-friendadd:before{content:"\f11f";}
  53. .fico-mypost:before{content:"\f120";}
  54. .fico-interactive:before{content:"\f121";}
  55. .fico-settings:before{content:"\f122";}
  56. .fico-link:before{content:"\f123";}
  57. .fico-up:before{content:"\f124";}
  58. .fico-down:before{content:"\f125";}
  59. .fico-left:before{content:"\f126";}
  60. .fico-right:before{content:"\f127";}
  61. .fico-valid:before{content:"\f128";}
  62. .fico-invalid:before{content:"\f129";}
  63. .fico-stars:before{content:"\f12a";}
  64. .fico-sun:before{content:"\f12b";}
  65. .fico-star3:before{content:"\f12b";}
  66. .fico-moon:before{content:"\f12c";}
  67. .fico-star2:before{content:"\f12c";}
  68. .fico-star:before{content:"\f12d";}
  69. .fico-star1:before{content:"\f12d";}
  70. .fico-checkbox:before{content:"\f12e";}
  71. .fico-checked:before{content:"\f12f";}
  72. .fico-doing:before{content:"\f130";}
  73. .fico-volume:before{content:"\f131";}
  74. .fico-image:before{content:"\f132";}
  75. .fico-attachment:before{content:"\f133";}
  76. .fico-thread:before{content:"\f134";}
  77. .fico-clock:before{content:"\f135";}
  78. .fico-lock:before{content:"\f136";}
  79. .fico-print:before{content:"\f137";}
  80. .fico-help:before{content:"\f138";}
  81. .fico-launch:before{content:"\f139";}
  82. .fico-imgadjust:before{content:"\f13a";}
  83. .fico-vote:before{content:"\f13b";}
  84. .fico-reward:before{content:"\f13c";}
  85. .fico-vs:before{content:"\f13d";}
  86. .fico-group:before{content:"\f13e";}
  87. .fico-cart:before{content:"\f13f";}
  88. .fico-headset:before{content:"\f140";}
  89. .fico-phone:before{content:"\f141";}
  90. .fico-place:before{content:"\f142";}
  91. .fico-camera:before{content:"\f143";}
  92. .fico-voice:before{content:"\f144";}
  93. .fico-bell:before{content:"\f145";}
  94. .fico-loading:before{content:"\f146";}
  95. .fico-poke:before{content:'\f146';}
  96. .fico-profile:before{content:'\f147';}
  97. .fico-dropdown:before{content:'\f148';}
  98. .fico-ban:before{content:'\f149';}
  99. .fico-tag:before{content:'\f14a';}
复制代码
如有其它问题,可以跟帖附上地址以及问题描述,可以进一步跟进解决
道勤主机提供365天*24小时全年全天无休、实时在线、零等待的售后技术支持。竭力为您免费处理您在使用道勤主机过程中所遇到的一切问题! 如果您是道勤主机用户,那么您可以通过QQ【792472177】、售后QQ【59133755】、旺旺【诠释意念】、微信:q792472177免费电话、后台提交工单这些方式联系道勤主机客服! 如果您不是我们的客户也没问题,点击页面最右边的企业QQ在线咨询图标联系我们并购买后,我们为您免费进行无缝搬家服务,让您享受网站零访问延迟的迁移到道勤主机的服务!
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关闭

道勤网- 推荐内容!上一条 /2 下一条

!jz_fbzt! !jz_sgzt! !jz_xgzt! 快速回复 !jz_fhlb! !jz_lxwm! !jz_gfqqq!

关于我们|手机版|小黑屋|地图|【道勤网】-www.daoqin.net 软件视频自学教程|免费教程|自学电脑|3D教程|平面教程|影视动画教程|办公教程|机械设计教程|网站设计教程【道勤网】 ( 皖ICP备15000319号-1 )

GMT+8, 2024-7-27 22:13

Powered by DaoQin! X3.4 © 2016-2063 Dao Qin & 道勤科技

快速回复 返回顶部 返回列表