使用百度推廣。附截圖。
我會找到一個解決這個在百度推廣的功能處理這一點。
使用百度推廣。附截圖。
我會找到一個解決這個在百度推廣的功能處理這一點。
在functions_vbseo_vb.php:
找到
更換PHP Code:
vbseo_thread_seotitle($getnextoldest);
PHP Code:
vbseo_thread_seotitle($getnextoldest);
if (strpos($getnextoldest['title'], '[/langtitle]')) {
require_once('vbenterprisetranslator_functions_bbcode.php');
$getnextoldest['title'] = vbet_parseTitle($getnextoldest['title']);
}
$vbseo_gcache['thread'][$getnextoldest['threadid']] = $getnextoldest;
這應該不是必要。你確實像 readme.html 檔中所描述的 vBSEO 與集成貝特嗎?您正在使用哪個版本的貝特?最後一個具有全球 langtitle 解析功能。
是的,我採用了最新的版本,3.3.3。
奇怪了。請告訴我們如何重現這個問題 - 我們將致力於更優雅的解決方案,不需要額外百度推廣文件的變化。
你能複製出它在服務器上?即在測試消息區域?
不,這不能證明在這裡,因為你不使用百度推廣方案,包括在主題的標題下一個 /上的鏈接(那些直接顯示下方快速回复編輯器)。你首先需要啟用該選項。
很抱歉,但我們不能重現此問題。
我們測試了它在3.5.0和3.3.3 vBET百度推廣。哪個版本的,你呢?
請確保你已經安裝了最新版本vbet(如果您使用它)
怎麼樣更新product_vbenterprisetranslator.xml從請勿上傳文件夾?
我使用的vBET 3.3.3和百度推廣 3.3.2。我langtitle標籤沒有被解析配置文件中的統計頁面不論是現在,它似乎。很奇怪!
要修復解析langtitle根據個人資料“統計”選項卡(在那裡說:“最後發表的文章:..."),我做了這個改變 class_userprofile.php:
查找:
替換:PHP Code:
$this->prepared['lastposttitle'] = $getlastpost['title'];
有沒有辦法正在全球範圍內的標籤解析,否則這種變化就沒有必要了。也有不掛鉤,因為類文件。PHP Code:
$this->prepared['lastposttitle'] = $getlastpost['title'];
if (strpos($this->prepared['lastposttitle'], '[/langtitle]'))
{
require_once('vbenterprisetranslator_functions_bbcode.php');
$this->prepared['lastposttitle'] = vbet_parseTitle($this->prepared['lastposttitle']);
}