花晨月夕
专注web开发,可开发网站、小程序、app、oa、erp等各种系统
newscms主题,电脑和手机端商品页分享及点赞模块怎么隐藏
2023-12-04 21:36:59
[img]https://kfuu.cn/zb_users/upload/2023/12/20231204213658170169701861756.png[/img]
2023-12-04 11:03:19
在网站根目录新建一个php文件,放入下面代码,浏览器打开后开始执行替换
[code:php]<?php
require 'zb_system/function/c_system_base.php';
foreach($zbp->GetArticleList('*', array(array('META_NAME', 'log_Meta', 'file')), array('log_ID' => 'DESC')) as $post){
$post->Metas->file = str_replace('原内容', '新内容', $post->Metas->file);
$post->Save();
}
echo 'ok';[/code]
2023-12-03 15:17:28
主题配置-其它配置-自定义style 填写下面的css代码
[code:css].wc-tabs + div + div,#tab-title-reviews{display:none}[/code]
2023-11-23 15:41:24
主题配置-其它配置-自定义style 填写下面的css代码
[code:css]@media screen and (min-width:768px){
.login_reg{font-size:0;}
.login_reg a:first-child{font-size:12px;}
}[/code]
2023-11-17 21:48:23
主题配置-其它配置-自定义style 填写下面的css代码
[code:css]@media screen and (min-width:768px){
/* 隐藏登录窗口的"注册账号"按钮 */
.login_reg{font-size:0;}
.login_reg a:last-child{font-size:12px;}
/* 隐藏导航栏的"注册"按钮 */
.header .reg{display:none!important}
}[/code]
2023-11-17 21:04:44
主题配置-其它配置-自定义style 填写下面的css代码
[code:css].mobile_header_user ul.menu li.center .sub-menu li:nth-child(-n+7):not(:first-child),
.author_subtabs ul.tabs li:nth-child(-n+7):not(:first-child){display:none}[/code]