Thanks so much for your help. What should I change it to in order to show the forum name?
This is a discussion on vBSEO Style 1.0 PRO - Released for Everyone within the vBSEO Announcements forums, part of the Announcements & Pre-Sales category; Thanks so much for your help. What should I change it to in order to show the forum name?...
Thanks so much for your help. What should I change it to in order to show the forum name?
You can use the default vB variables.
$vboptions[bbtitle] is the board name
$thread[title] is the thread title
$thread[prefix_plain_html] is the thread prefix
You can see more by looking at the default vB template.
Thanks so much! Now it is fixed. How do you get rid of the "\" "What\'s Going On?" and Today\'s Birthdays?
Could it be related to the Virtual HTML Display ?The phrase itself seems to be fine...not sure why it's getting output like that.
Toggle it on/off and see if it makes a difference.
Never mind. I took a look at your Forum in sig., it's not using VHD.
Another bug(?), the forum categories won't get collapsed too.
Something is wrongly (& partially) escaping single quotes in the html output.
Code:[...] onclick="return toggle_collapse(\'forumbit_9\')"> <img id="collapseimg_forumbit_9" [...]
I'll release a new package very shortly![]()
Mert Gökçeimam / Crawlability Inc.
vBSEO 3.6.0 Alpha Önizlemesi - Including Like Tree
Unveiling the NEW vBSEO Sitemap Generator 3.0 - available NOW for vBSEO Customers!
Twitter:@Depkac
Personal Blog : Mert Gökçeimam
its an error with
Enable Automatic Header Tags Modification
Package has been updated. Please re-import the latest product file.
Mert Gökçeimam / Crawlability Inc.
vBSEO 3.6.0 Alpha Önizlemesi - Including Like Tree
Unveiling the NEW vBSEO Sitemap Generator 3.0 - available NOW for vBSEO Customers!
Twitter:@Depkac
Personal Blog : Mert Gökçeimam
Erm i just uploaded this, an it overwrote all my custom work i did..
thanks alot.
Reimporting the product file will solve the problem. Additionally you can replace global_complete plugin content with the following
PHP Code:if(VBSEO_CT_APPLY)
{
if($vbulletin->options['vbseo_ct_autohx'])
{
$output = preg_replace('#(<td class="tcat"[^>]*?>)(.*?)(</td>)#ise', 'stripslashes("$1".preg_replace(\'#^(.*?<div[^>]*?>)?(.*?)(</div>.*)?$#is\', \'\$1<h4>\$2</h4>\$3\', "$2")."$3")', $output);
}
}
Mert Gökçeimam / Crawlability Inc.
vBSEO 3.6.0 Alpha Önizlemesi - Including Like Tree
Unveiling the NEW vBSEO Sitemap Generator 3.0 - available NOW for vBSEO Customers!
Twitter:@Depkac
Personal Blog : Mert Gökçeimam
That did the trick![]()