聯系QQ:13581261474
/*隱藏文章詳情頁相關推薦*/
.post-pre-next {
display: none !important;
}
修改評論框文本
文章回復框內文字修改 /b2/comments.php ~124
請不要刷評論、發布垃圾廣告和涉嫌違規違法的內容。
隱藏媒體庫報錯提示
//后臺強制css,去除媒體庫報錯
function custom_logo() {
echo '<style type="text/css">
#mceu_62 {display:none;}
</style>';
}
add_action('admin_head', 'custom_logo');
新版本2.6.4,不讓游客支付的方法,看圖,原文鏈接:詳情

紙工廠分享
/*logo圖2 + 文字*/
.logo { float: left; }
.logo img { height: 48px; margin-top: 2px; }
@media screen and (max-width:768px){
.logo img { margin-left: 5px; height: 38px; margin-top: -2px; }}
#AD1 { position:absolute; width:160px; height:45px; overflow:hidden; margin-left: 128px; margin-top: -2px;}
#AD1-photos img {float:left;width:128px;height:45px; padding: 0 32px 0 0;}
#AD1-photos span{ font-size: 13px; color:#999999; margin-top: -1px; line-height: 18px;}
#AD1-photos { position: absolute;z-index:9; width: calc(160px * 2); /*修改圖片數量的話需要修改下面的動畫參數*/}
.AD1-1{ animation: ma 10s ease-out infinite alternate;}
@keyframes ma {
0%,45% { margin-left: 0px; }
50%,100% { margin-left: -160px; }
}
● 網站抬頭Logo修改 /b2/Modules/Templates/Header.php ~409 ~~~原文件更新日期:21.1.3
<div id="AD1" class="mobile-hidden"><div id="AD1-photos" class="AD1-1">
<img src="https://paper.tv/pic/logo2.svg" ><span>免費下載最新紙模圖紙<br>親手制作平面到立體的樂趣</span></div></div>
專題內容鏈接從新窗口打開
添加到子主題的child.js中

document.querySelector(".post-module-thumb a.thumb-link").setAttribute("target","_blank");
document.querySelector("#primary-home .post-3 .post-info h2 a").setAttribute("target","_blank");
解決B2主題圈子首頁不顯示圈子問題
新建一個廣場圈子,鼠標選中編輯按鈕,查看左下角鏈接,獲取廣場圈子ID
update_option('b2_circle_default','廣場ID');
- 在主題的funtions.php文件底部添加上述代碼
- 前臺刷新下圈子
- 刪除上述代碼
固定頁眉

專題標題

page>collection.php 文件第22行
隱藏媒體庫報錯提示
failed to initialize plugin:b2 edit or button
functions.php底部添加以下代碼
//隱藏媒體庫報錯
function admin_ncss() {
echo'<style type="text/css">
.mce-notification.mce-has-close {
display: none;
}
</style>';
}
add_action('admin_head', 'admin_ncss');